JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
<!--Начало шапки-->
    <div id="header">
        <div id="logo"></div>
        <div id="banner"></div>
    </div>
    <div class="clear"></div>
<!--Конец шапки-->

<!--Начало навигации-->
    <div id="navigation">
        <div id="Gray">
            <div id="Navig">
                <div id="nav">
                    <ul>
                        <li><a href="weaweaw.html">Home</a></li>
                        <li><a href="weaweaw.html">About Me</a></li>
                        <li><a href="weaweaw.html">Design Services</a></li>
                        <li><a href="weaweaw.html">Request Quote</a></li>
                        <li><a href="weaweaw.html">Advertise</a></li>
                        <li class="last"><a href="weaweaw.html">Contact Me</a></li>
                    </ul>
                </div>
                <div class="clear"></div>
                <div id="nav-ico">
                    <ul>
                        <li><a class="p" href="42324.html"></a></li>
                        <li><a class="p2" href="42324.html"></a></li>
                        <li><a class="p3" href="42324.html"></a></li>
                        <li><a class="p4" href="42324.html"></a></li>
                    </ul>
                </div>
                <div class="clear"></div>
            </div>
        </div>
        <div id="Orange">
            <div id="Navig2">
                <ul>
                    <li><a href="fsfsfsd.html">insipration</a></li>
                    <li><a href="fsfsfsd.html">technology</a></li>
                    <li><a href="fsfsfsd.html">freebies</a></li>
                    <li><a href="fsfsfsd.html">wordpress</a></li>
                    <li><a href="fsfsfsd.html">tutorials</a></li>
                    <li><a href="fsfsfsd.html">tutorials</a></li>
                    <li><a href="fsfsfsd.html">wallpapers</a></li>
                </ul>
            </div>
        </div>
    </div>
<!--Конец навигации-->

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;
}

#wrapper {
    width:100%;
    color:#ffffff;
    font-family:Arial, sans-serif;
}

#header {
    width:990px;
    height:114px;
    margin:0 auto;
    position: relative;
}

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

#header #banner {
    width:728px;
    height:90px;
    float:left;
    background-image: url(../images/banner.png);
    background-repeat:no-repeat;
    position:absolute;
    top:12px;
    right:0;
}

.clear {
    clear:both;
}

#navigation {
    width:100%;
    height:79px;
}

#navigation #Gray {
    height:36px;
    background-image: url(../images/Gray.png);
    background-repeat:repeat-x;
}

#navigation #Orange {
    height:43px;
    background-image: url(../images/Orange.png);
    background-repeat:repeat-x;
}

#Gray #Navig {
    width:990px;
    height:36px;
    margin:0 auto;
...