JSFiddle - React, Tailwind, and code Playground

HTML

<body>
<div id="wrapper">
    <div id="header">
        <div id="logo"></div>
        <div id="banner"></div>
        <div class="clear"></div>
        <div id="line1">
            <div id="nav1">
            <ul>
                <li><a href="11.html">Home</a></li>
                <li><a href="11.html">About Me</a></li>
                <li><a href="11.html">Design Services</a></li>
                <li><a href="11.html">Request Quote</a></li>
                <li><a href="11.html">Advertise</a></li>
                <li><a href="11.html">Contact Me</a></li>
            </ul>
            </div>
        </div>
        <div id="nav2">
        <div id="line2">
            <ul>
                <li></li>
                
            </ul>
        </div> 
        </div>   
    </div>	
	










</div>
</body>

CSS

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


body {
    font-family:Arial, sans-serif;
    background-color:#ffffff;
}

#wrapper {
    width:988px;
    height:2535px;
    outline:1px solid #cccccc;
    margin:0 auto;
}

#header {
    height:194px;
    outline:1px Solid #cc0000;
    position:relative;
}

#header #logo {
    width:189px;
    height:35px;
    outline:1px solid #cccccc;
    background-image:url(../images/logo.png);
    background-repeat:no-repeat;
    position:absolute;
    top:40px;
    float:left;
}

#header #banner {
    background-image:url(../images/banner.png);
    background-repeat:no-repeat;
    width:728px;
    height:90px;
    float:left;
    margin:11px 0 14px 260px;
}

.clear {
    clear:both;
}

#line1 {
    height: 35px;
    outline:1px solid #cccccc;
    background-image: url(../images/nav1.png);
    background-repeat:repeat-x;
    
}

#line1 #nav1 {
    width:538px;
    outline:1px solid #cccccc;
    height:43px;
    position:absolute;
    float:left;
}

#line1 #nav1...