-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="/Css/style.css">
<title>Portfolio Website</title>
</head>
<body>
<header>
<a href="#" class="logo">Harsh</a>
<nav>
<a href="#" class="active"> Home</a>
<a href="#" >Services</a>
<a href="#" >Skills</a>
<a href="#" >Education</a>
<a href="#" >Experience</a>
<a href="#" >Contact</a>
</nav>
</header>
<section class="home">
<div class="home-img">
<img src="/Images//main01.jpeg" alt="">
</div>
<div class="home-content">
<h1>Hi, It's <span>Harsh</span></h1>
<h3 class="typing-text">I'm a <span></span></h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus labore dolores esse. Odit similique doloribus tenetur doloremque, sunt commodi in ipsa repudiandae debitis deleniti blanditiis quibusdam quaerat neque asperiores ea.</p>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
</div>
<a href="#" class="btn">Hire me</a>
</div>
</section>
</body>
</html>