-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
<!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">
<title>Portfolio</title>
<link rel="stylesheet" href="Styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
</head>
<body>
<header class="container header active" id="home">
<div class="header-content">
<div class="left-header">
<div class="h-shape"></div>
<div class="image">
<img src="Images/Photo.jpg" alt="Me:)">
</div>
</div>
<div class="right-header">
<h1 class="name">
Hi, I'm <span>Abhishek Srivastava.</span>
A Competitive Programmer!
</h1>
<p>
I am a sophomore at Institute of Engineering, Lucknow in Computer Science and Engineering branch.
<br>
I love to solve problems using Data Structures and Algorithms.
</p>
<div class="btn-con">
<a href="https://drive.google.com/file/d/1-qxZ58tS7UAvfdItKWbDmxwN49r0hK1F/view" class="main-btn" target="_blank">
<span class="btn-text">Download Résumé</span>
<span class="btn-icon"><i class="fas fa-download"></i></span>
</a>
</div>
</div>
</div>
</header>
<div class="controls">
<a href = "indec.html">
<div class="control active-btn">
<i class="fas fa-home"></i>
</div>
</a>
<a href = "About.html">
<div class="control">
<i class="fas fa-user"></i>
</div>
</a>
<a href = "Work.html">
<div class="control">
<i class="fas fa-project-diagram"></i>
</div>
</a>
<a href = "Contact.html">
<div class="control">
<i class="fas fa-envelope-open"></i>
</div>
</a>
</div>
</body>
</html>