Skip to content

Commit

Permalink
Merge pull request #2 from Mustaqhasan/navbar
Browse files Browse the repository at this point in the history
Navbar
  • Loading branch information
Surajy001 authored Jul 8, 2022
2 parents 817da66 + d054090 commit 545962c
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,45 @@
<head>

<title>Team Collaboration</title>

<style>
#main{
background-color: rgb(2, 2, 37);
display: grid;
grid-template-columns: repeat(2,1fr);
margin: auto;
border-radius: 10px;
}
#main>h1{
margin-left: 50px;
}

.child{
display: grid;
grid-template-columns: repeat(4,1fr);
}
h1{
color: white;

}

</style>
</head>
<body>

<h1>Hello Everyone</h1>
<h1>I am Suraj Yadav</h1>
<div id="main">

<h1>Reebok</h1>

<div class="child">
<h1>Men</h1>
<h1>Women</h1>
<h1>Login</h1>
<h1>Singup</h1>
</div>


</div>

</body>
</html>

0 comments on commit 545962c

Please sign in to comment.