-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
95 lines (88 loc) · 3.23 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link rel="stylesheet" href="./dist/css/main.css" type="text/css">
<title>About Me</title>
</head>
<body>
<header>
<div class="menu-btn">
<div class="btn-line"></div>
<div class="btn-line"></div>
<div class="btn-line"></div>
</div>
<nav class="menu">
<div class="menu-branding">
<div class="portrait"></div>
</div>
<ul class="menu-nav">
<li class="nav-item">
<a href="/" class="nav-links">Home</a>
</li>
<li class="nav-item current">
<a href="about.html" class="nav-links">About Me</a>
</li>
<li class="nav-item">
<a href="work.html" class="nav-links">My Work</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-links">How to reach me</a>
</li>
</ul>
</nav>
</header>
<main id='about'>
<h1 class="lg-heading">
About
<span class="text-secondary">Me</span>
</h1>
<h2 class="sm-heading">
Let me tell you a few things...
</h2>
<div class="about-info">
<img src="./dist/img/portrait.jpg" alt="Vineet Gautam" class="bio-image">
<div class="bio">
<h3 class="text-secondary">BIO</h3>
<p>I am an engineering graduate and have interest in web development and coding. "To work in a challenging environment
where my skills and knowledge are utilized for the achievement of the objectives of the organization",
with this moto I try to learn something new every day or week. If you find me and my skills right for
a position in your organization, please let me know.
</p>
</div>
<div class="job job1">
<h3>B.Tech.</h3>
<p>Branch: ECE
<br> University: GGSIPU
<br> Percentage: 72.53%
<br> Year: 2014-2018
</p>
</div>
<div class="job job2">
<h3>Technical Skills</h3>
<p>C
<br> HTML
<br> CSS
<br> Javascript
</p>
</div>
<div class="job job3">
<h3>Interests/Hobbies</h3>
<p>Web Development
<br> Physical Training
<br> Virtual Gaming
<br> Swimming
</p>
</div>
</div>
</main>
<footer id="main-footer">
Copyright © 2018
</footer>
<script src="./dist/js/main.js"></script>
</body>
</html>