JSFiddle - React, Tailwind, and code Playground

by sinju

HTML

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Portfolio</title>
    <link rel="stylesheet" href="Home_css.css" />
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  </head>
  <body>
    <div class="Home"> <a href="Home.html" target="_blank"><b>HOME</b></a></div>
    <div class="Projects"><a href="Projects.html" target="_blank"><b>PROJECTS</b></a></div>
    <div class="About"><a href="About.html target="_blank""><b>ABOUT</b></a></div>
  </body>
</html>

CSS

.Home a, .Home a:link {
  position: relative;
  font-family: 'open sans', sans-serif;
  color: black;
  font-size: 15px;
  text-decoration: none;
}

.Projects a, .Projects a:link {
  position: relative;
  font-family: 'open sans', sans-serif;
  color: black;
  font-size: 15px;
  text-decoration: none;
}
.About a, .About a:link {
  position: relative;
  font-family: 'open sans', sans-serif;
  color: black;
  font-size: 15px;
  text-decoration: none;
}