-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (82 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ashu Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat|Quicksand" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/animation.css">
<script defer type="text/javascript" src="js/main.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script>
</head>
<body>
<div id="wallpaper" class="wallpaper" data-image="Images/wallpaper.jpg"></div>
<div class="content">
<aside class="side">
<figure id="picture" class="picture">
<div class="picture-shadow"></div>
<img id="pictureImage" class="picture-image"
src="Images/[email protected]"
alt="Portrait of Ashu"
width="320"
height="320">
</figure>
</aside>
<main class="about">
<h1 class="name">
Hola! This is Avid Ashu
</h1>
<p class="job">
Web Developer
</p>
<hr class="hr">
<div class="description">
<p>
I spend my time traveling the world,
coding, developing and solving problems.
</p>
</div>
<div class="contact">
<ul class="social">
<li>
<a href="https://twitter.com/AvidAshu">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/avidashu">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/ashutosh-shukla-451183199/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/ashutosh._.04/">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<a class="button" href="mailto:[email protected]">
Get in touch
</a>
</div>
</main>
</div>
<noscript>
<style type="text/css">
.wallpaper {
animation-name: zoomOut;
}
.picture {
animation-name: dropIn;
}
</style>
</noscript>
</body>
</html