-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (108 loc) · 4.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hasan's Portfolio</title>
<link rel="icon" sizes="192x192" href="./assets/favicon.ico">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./animate.css">
</head>
<body>
<div class="menuContainer">
<div class="menu animated">
<a onclick="scrollToSection('#home')" >Home</a>
<a onclick="scrollToSection('#about')">About</a>
<a onclick="scrollToSection('#portfolio')">Portfolio</a>
<a onclick="scrollToSection('#contact')">Contact</a>
<a href="/assets/cv.pdf" download="HasanShahoudsCV">My CV</a>
</div>
<div class="menuButtonContainer">
<a class="menuButton" aria-describedby="Menu Button.">
<span></span>
<span></span>
<span></span>
</a>
</div>
</div>
<div class="modal" id="modal">
<div class="modalContent">
<div class="modalHeader"> Modal Header</div>
<div class="modalBody">Modal Body!!</div>
<div class="modalFooter">Modal Footer!!</div>
</div>
</div>
<div class="animated cvContainer"><a href="./assets/cv.pdf" download="HasanShahoudsCV">My CV</a></div>
<div class="container animated bounceInDown" id="home">
<main>
<div class="homeDescContainer">
<div class="homeDesc">
Hello! Welcome to my portfolio!
</div>
<a class="downArrow animated" onclick="scrollToSection('#about')">
<span class="arrowText">
About
</span>
</a>
</div>
</main>
<section id="about">
<div class="about">
<h2>
This is Hasan. I'm a full-stack developer.
</h2>
<p>
I love working on a front&back-end development. My strategy has always been self-learning, and
figuring out what I find important
to me; which is building new things and learn more during the process. In other words, programming
is
my passion!
</p>
<div class="skills">
No skills yet!
</div>
</div>
</section>
<section id="portfolio">
<div class="portfolio">
<h2>
Projects
</h2>
<h3>
These are some of my projects that I've done.
</h3>
<div class="projects">
No projects yet!
</div>
</div>
</section>
<section id="contact">
<div class="contact">
<h2>Thanks for taking the time to contact me.</h2>
<form enctype="text/plain" method="POST" id="contact-form">
<input placeholder="Your Name." type="text" name="name" required="">
<input placeholder="Your email." type="email" name="email" required="">
<textarea placeholder="Your Message." type="text" name="message"></textarea>
<input class="button" type="submit" id="submit" value="Go!">
<div id="success" class="animated fadeIn hide">
<div>Will get back to you very soon. Thanks!</div>
</div>
</form>
</div>
</section>
<footer>
<p>
Created By Hasan_Sh.
</p>
<div class="links">
<a href="https://codepen.io/Shahoud/" target="_blank">Codepen</a>
<a href="https://github.com/hasan-sh" target="_blank">Github</a>
<a href="https://nl.linkedin.com/in/hasan-sh-367428125" target="_blank">Linkedin</a>
<a href="https://stackoverflow.com/users/7439383/hasan-sh" target="_blank">Stackoverflow</a>
</div>
</footer>
</div>
<script src="./data.js"></script>
<script src="./index.js"></script>
</body>
</html>