-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
38 lines (34 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head><!-- ===( CODE AASHU )=== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>CODE AASHU : Simple Portfolio website</title>
</head>
<body>
<header class="header">
<div class="navbar">
<img src="images/logo.png" alt="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Places</a></li>
</ul>
<div class="icon">
<a href="#"><i class="fa-brands fa-searchengin"></i></a>
<a href="#"><i class="fa-brands fa-gitter"></i></a>
</div>
</div>
<div class="text">
<h1>We Love to Build Your <br> Bussiness.</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <br>
Exercitationem doloribus tempora ratione beatae, totam maiores..</p>
<button>Visit Us</button>
</div>
</header>
</body>
</html>