-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (133 loc) · 7.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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">
<title>Nilab's Portfolio </title>
<link rel="stylesheet" href="mobile.css">
<link rel="stylesheet" href="desktop.css">
</head>
<body>
<div class="main">
<div class="container" id="Portfolio">
<header class="menu-bar">
<a class="logo">My Logo</a>
<nav>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="menu">
<li class="nav-item">
<a href="#Portfolio" class="nav-link" >Portfolio</a>
</li>
<li class="nav-item">
<a href="#About" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<ul class="desktop-menu">
<li>Portfolio</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</header>
<section class="headline">
<h1 class="header">I’m Nilab<br> Glad to see you!</h1><br>
<p class="text">I’m a software developer! I can help you build a product ,
feature or website Look through<br> some of my work and experience! If you like what you see and have a project you need <br>coded,
don’t hestiate to contact me.</p><br>
<div class="connect"><a href="#"> LET'S CONNECT </a> </div><br>
<div class="social-connect">
<ul>
<li><a href="#"><img src="img/twitter.svg" alt="Twitter"></a></li>
<li><a href="#"><img src="img/Linkedin.svg" alt="Linkedin"></a></li>
<li><a href="#"><img src="img/medium.svg" alt="medium"></a></li>
<li><a href="#"><img src="img/angellist.svg" alt="Angilist"></a></li>
<li><a href="#"><img src="img/github.svg" alt="Github"></a></li>
</ul>
</div>
</section>
</div>
<section class="works">
<div id="works-container" class="works-container"></div>
</section>
<section class="about-myself" id="About">
<div class="top-left">
<h2>About <br>Myself</h2><br>
<p >Hello I’m a software developer! I can help you build a product , feature or website Look
through some of my work and experience! If you like what you see and have a project you need code,
don’t hestiate to contact me.</p>
<div class="connect"> <a href="#">LET'S CONNECT</a></div>
<div class="social-connect">
<ul>
<li><a href="#"><img src="img/twitter.svg" alt="Twitter"></a></li>
<li><a href="#"><img src="img/Linkedin.svg" alt="Linkedin"></a></li>
<li><a href="#"><img src="img/medium.svg" alt="medium"></a></li>
<li><a href="#"><img src="img/angellist.svg" alt="Angilist"></a></li>
<li><a href="#"><img src="img/github.svg" alt="Github"></a></li>
</ul>
</div><br>
<button class="btn1" type="button">Get my resume</button><br><br><br>
</div>
<div class="top-right">
<div class="lang-skill">
<span class="lg">Languages</span>
<img class="down" src="img/download.png" alt="down arrows languages">
</div>
<div class="show-skill">
<ul>
<li >
<img class="lang-img" src="img/Ellipse1.png" alt="javascript">
<span class="span">JavaScript</span>
</li>
<li >
<img class="lang-img" src="img/Ellipse2.png" alt="HTML">
<span class="span">HTML</span>
</li>
<li >
<img class="lang-img" src="img/Ellipse3.png" alt="CSS">
<span class="span">CSS</span>
</li>
</ul>
</div>
<div class="more-skill">
<span class="lg">Frameworks</span>
<img class="down" src="img/forward-arrow-1.png" alt="down arrow framworks">
<hr class="divider1">
</div>
<div class="lang-skill">
<span class="lg">Skills</span>
<img class="down" src="img/forward-arrow-1.png" alt=" forward arrow skills" >
<hr class="divider2">
</div>
</div>
</section>
<section class="contact-form" id="contact">
<div class="contact-info">
<h2>Contact me</h2>
<p>If you have an application you are interested in developing,
a feature that you need built or a project that needs coding. I’d love to help with it </p>
</div>
<div class="contact_form">
<form action="https://formspree.io/f/xzbqgdoy" method="post" id="form">
<input type="text" name="fullname" id="name" placeholder="Enter your full name" maxlength="30" required>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<div class="error-msg" id="error-msg"></div>
<textarea name="message" id="text" placeholder="Write your message here" maxlength="500" required></textarea>
<button class="card-btn">Get in touch</button>
</form>
</div>
</section>
</div>
<div id="overly" class="hidden"></div>
<div id="popupCard" class="hidden-popup"></div>
<script defer src="menu.js"></script>
<script defer src="form_validation.js"></script>
</body>
</html>