-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (110 loc) · 4.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap css file -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=Dosis&display=swap"
rel="stylesheet"
/>
<!-- font awesome icons -->
<link rel="stylesheet" href="assets/css/all.min.css" />
<link rel="stylesheet" href="../assets/css/main.css" />
<!-- custom css file -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Loader css file -->
<link rel="stylesheet" href="../assets/css/loader.css" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>Abhishek Maira - developing cool stuff 😎👨💻</title>
</head>
<body>
<!-- Loader (bouncing dots)-->
<div class="loader">
<span></span>
<span></span>
<span></span>
</div>
<!-- Main Content -->
<div class="main site-main">
<header id="header-home">
<div class="container">
<nav id="navbar" class="navbar top">
<img src="../assets/images/logo.png" alt="My Portfolio" id="logo" />
<ul>
<li><a href="#home" class="current">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="header-content" id="home">
<h1>
I Am A
<span
class="txt-type"
data-wait="2000"
data-words='["Fluter Developer", "Front-End Developer", "Back-End Noob", "ML Enthusiast"]'
></span>
</h1>
<a href="work.html" class="btn-light">View My Work</a>
</div>
</div>
</header>
<!-- ========================= About Area ========================== -->
<section class="about-area" id="about">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="about-image">
<img
src="assets/images/about-us.png"
alt="About us"
class="img-fluid"
/>
</div>
</div>
<div class="col-lg-6 col-md-12 about-title">
<h2 class="text-uppercase pt-5">
<span>Let me</span>
<span>introduce</span>
<span>myself</span>
</h2>
<div class="paragraph py-4 w-75">
<p class="para">
Hi, I'm Abhishek Maira, a web and app developer 👨🏻💻 from India.
I'm a creative problem solving enthusiast and a product guy,
with a constantly growing love for kick ass products. I'm
proud to say that
<strong>I can succesfully center an element with css</strong>.
</p>
<p class="para">
Beside's Hacking stuff, I play chess ♘ and Fifa ⚽. I support
Manchester United 👿 and Barcelona 😎.
</p>
</div>
<button
type="button"
class="btn button primary-button text-uppercase"
onclick="window.location.href='https://drive.google.com/file/d/1xBTKO3_TrRuBnr9PCI-yaaF333P3h1NL/view?usp=sharing';"
>
Download cv
</button>
</div>
</div>
</div>
</section>
<!-- ========================= End About Area ========================== -->
</div>
<!-- Typewriter js file -->
<script src="/assets/js/typewriter.js"></script>
<!-- Main.js -->
<script src="/assets/js/main.js"></script>
<!-- jquery js file -->
<script src="/assets/js/jquery.3.5.1.js"></script>
<!-- Bootstrap js file -->
<script src="./js/bootstrap.min.js"></script>
</body>
</html>