-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (42 loc) · 1.93 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Created a header html file and using css in it.Doing Practice of Classes in it">
<meta name="keywords" content="Header , Navbar , List">
<title>Header</title>
<link rel="stylesheet" href="css/Header.css" type="text/css">
<script src="https://kit.fontawesome.com/216f5c88a4.js" crossorigin="anonymous"></script>
<!-- <link rel="stylesheet" href="file:///C:/Web%20Development/Font%20Awesome/fontawesome-free-5.15.3-web/fontawesome-free-5.15.3-web/css/all.css" type="text/css"> -->
<link rel="shortcut icon" href="img/favicon-16x16.png" type="image/x-icon">
</head>
<body><header>
<div class="logo">
<i class="fab fa-css3"></i>
<h1 class="logo-head">Header</h1>
</div>
<nav class="Navbar">
<ul>
<li class="Navbar-Li"><a href="#" class="Home">Home</a></li>
<li class="Navbar-Li"><a href="#" class="Home">About</a></li>
<li class="Navbar-Li"><a href="#" class="Home">Contact Us</a></li>
</ul>
</nav>
<div class="SocialIcons">
<!-- <a href="#" class="insta"></a>
<a href="#" class="facebook"></a>
<a href="#" class="youtube"></a>
<a href="#" class="twitter"></a> -->
<!-- <img src="" alt="Instagram LOGO" class="insta">
<img src="" alt="Facebook LOGO" class="facebook">
<img src="" alt="Youtube LOGO" class="youtube">
<img src="" alt="Twitter LOGO" class="twitter"> -->
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-twitter"></i>
</div></header>
</body>
</html>