-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (38 loc) · 1.45 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
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio website</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#" class="logo">Hardik</a>
<nav class="navbar">
<a href="#">Home </a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Portfolio</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>Hi, I am Hardik Batra</h1>
<h3>Full Stack Developer</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Magnam excepturi minima ducimus maxime provident, alias numquam voluptatum neque quidem sit eligendi! Modi consectetur aut quidem optio est! Beatae, temporibus provident.</p>
<div class="btn-box">
<a href="#">Hire Me</a>
<a href="#">Lets Talk</a>
</div>
</div>
<div class="home-sci">
<a href="#"><i class='bx bxl-facebook'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-linkedin'></i></a>
</div>
</section>
</body>
</html>