JSFiddle - React, Tailwind, and code Playground

by DNNdrago

HTML

<html>
<head lang="en">
    <meta charset="UTF-8"/>
    <title>Home</title>
</head>
<body>
    <h1>Doge Social Network</h1>
    <nav>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="6.%20Profile.html">Profile</a></li>
            <li><a href="6.%20Friends.html">Friends</a></li>
        </ul>
    </nav>
    <hr/>
    <h2>Welcome to the Doge Social Network</h2>
    <hr/>
    <p>Here you can find friends or stalk strangers.</p>
    <p>The Doge Social Network does not take any responsibility for the information found.</p>
</body>

CSS

body {
    background-color: #ADD8E6;
}
hr {
    border-color: #E4E6E7;
}
img {
    border: black solid 1px;
}
dt {
    font-style: italic;
}