Created
November 22, 2019 14:50
-
-
Save masterashu/2e17416096d8111ab8229ffa62a318e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Buisness Website</title> | |
<link href="style.css" rel="stylesheet" type="text/css"> | |
</head> | |
<body> | |
<header> | |
<div class="row"> | |
<div class="logo"> | |
<img src="logo.png"> | |
</div> | |
</div> | |
<ul class="main-nav"> | |
<li class="active"> <a href="#">HOME</a> </li> | |
<li><a href="#">SERVICES</a></li> | |
<li><a href="#">ABOUT</a></li> | |
<li><a href="#">CONTACT</a></li> | |
<li><a href="#">NEWS</a></li> | |
<li><a href="#">FAQ</a></li> | |
</ul> | |
</header> | |
<div class="hero"> | |
<h1>Are You Ready</h1> | |
<div class="button"> | |
<a href="#" class="btn btn-one">Watch Video</a> | |
<a href="#" class="btn btn-two">Explore More</a> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment