-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Coded the First page of Natours Website with html and css
- Loading branch information
1 parent
09cc348
commit 10d6983
Showing
2 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet"> | ||
<link rel="stylesheet" href="css/icon-font.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="header_img_box"> | ||
<img class="header_img" src="img/logo-white.png" alt="logo_img_header"> | ||
</div> | ||
<div class="header_description_box"> | ||
<h1 class="header_description"> | ||
<span class="header_description_main">outdoors</span> | ||
<span class="header_description_sub">is where life happens</span> | ||
</h1> | ||
<a class="btn btn_white" href="#"> | ||
discover our tours | ||
</a> | ||
</div> | ||
</header> | ||
</body> | ||
</html> |