-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 2.52 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
<!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 user-scalable=false;" />
<link href="https://fonts.googleapis.com/css?family=Montserrat|Quicksand" rel="stylesheet">
<link rel="icon" href="./images/me.ico" type="image/icon type">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css"
/>
<link rel="stylesheet" href="./CSS/main.css" />
<link rel="stylesheet" href="./CSS/animations.css">
<title>Houssam El Masoudi - Full-Stack Developer</title>
<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>
<noscript>
<style type="text/css">
.wallpaper {
animation-name: zoomOut;
}
.picture {
animation-name: dropIn;
}
</style>
</noscript>
<body>
<div id="wallpaper" class="wallpaper" data-image="images/tangier.jpg"></div>
<div class="content">
<aside class="side">
<figure class="picture">
<div class="picture-shadow"></div>
<img
id="pictureImage"
class="picture-image"
sizes="(max-width: 320px) 100vw, 320px"
src="./images/me.jpg"
alt="My images">
</figure>
</aside>
<main class="about">
<h1 class="name">Hi, I'm Houssam El Masoudi</h1>
<p class="job">Full-stack Developer</p>
<hr class="hr" />
<div class="description">
<p>
I spend my time creating clean websites and helping businesses
build seamless relationships with their customers.
</p>
</div>
<div class="contact">
Get in touch
</a>
</div>
<ul class="social">
<li>
<a href="https://www.facebook.com/houssam.elmasoudi/" target="_blank">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/houssamELM" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/elmasoudi/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</main>
</div>
</body>
</html>