JSFiddle - React, Tailwind, and code Playground

by Joren Wouters

HTML

<title>17</title>


<body>
<div id="header">
<div id="navmenu">
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Services</a></li>
        
         <li><a href="#">Portfolio</a></li>
         <li><a href="#">Blog</a></li>
         <li><a href="#">Contact</a></li>
    </ul>

    

    
</div>
</div>
<div id="body">
    Hier kunt u uw inhoud neerzetten
    </div>
    
    <div id="footer">
        <p class="footer">Designed by <i><a href="http://www.silverworx.nl">Silverworx</a></i>
    </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;
}
body {
margin: 0;
}
p {
margin: 0; 
}
#header {
margin: 0;
width: 100%;
height: 75px;
background: #469;
float: left;
}
#navmenu {
margin-left: 50px;
margin-top: 25px;
height: 50px;

width: 620px;
    padding: 0;
}
#navmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#navmenu li {
    margin-top: 12px;
    float: left;
    width: 100px;
    padding: 10px;
    background: #469;
    border: 1px solid #000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    text-align: center;
margin-left: 1px;
}
#navmenu ul li a {
    font-family: Arial;
    font-size: 13px;
    color: #fff;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
}
#navmenu li:hover {
    text-decoration: underline;
}
#body {
    margin: 0;
    width: 100%;
    height: 600px;
    border: 1px solid #000;
    font-family: Verdana;
}
#footer {
    margin: 0;
    width: 100%;
    background: #469;
    border: 1px solid #000;
    font-family: Verdana;
    color: #fff;
    font-size: 13px;
    height: 150px;
    float: left;
}
.footer {
    margin-top: 100px;
    
    text-align: center;
}
#footer a {
    color: #fff;
}
#footer a:hover {
    text-decoration: none;
    
}