-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
235 lines (204 loc) · 7.72 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!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" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<title>RyDar Explore</title>
</head>
<body>
<!-- The nav bar -->
<nav>
<h1>RyDar Explore</h1>
<ul class="navigation">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
<button class="burger-menu" id="burger-menu">
<ion-icon class="bars" name="menu-outline"></ion-icon>
</button>
</nav>
<!-- Code for the section part -->
<section class="hero" id="about">
<img src="./assets/images/wfh_1.svg" alt="section image" />
<div class="bio animate__animated animate__shakeX">
<h1>About Me</h1>
<p class="bio-text">
I am a full stack web developer with a passion for creating beautiful
and functional websites.
</p>
</div>
</section>
<section class="more-about">
<h1>More About Me</h1>
<p>
I am a full stack web developer with a passion for creating beautiful
and functional websites. I have a background in graphic design and a
love for creating beautiful and functional websites. I am currently
learning python and java script.
</p>
<p>
I am a full stack web developer with a passion for creating beautiful
and functional websites. I have a background in graphic design and a
love for creating beautiful and functional websites. I am currently
looking for a position in the software engineering industry.
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt
molestias perspiciatis in magni earum deleniti itaque iusto eaque
aliquid nostrum!
</p>
</section>
<section class="skills" id="skills">
<h2 class="skill-header">My Top Skills</h2>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/icons/icons8-html-5.svg"
class="icon icon-card"
alt=""
loading="lazy"
/>
<img
src="./assets/icons/icons8-css3.svg"
class="icon icon-card"
alt=""
loading="lazy"
/>
<img
src="./assets/icons/icons8-javascript.svg"
alt=""
class="icon icon-card"
loading="lazy"
/>
</div>
<div class="second-set animate__animated animate__pulse">
<img
src="./assets/icons/icons8-bootstrap.svg"
alt=""
class="icon icon-card"
loading="lazy"
/>
<img
src="./assets/icons/icons8-react-native.svg"
alt=""
class="icon icon-card"
loading="lazy"
/>
<img
src="./assets/icons/icons8-git.svg"
alt=""
class="icon icon-card"
loading="lazy"
/>
</div>
</div>
</section>
<section class="projects" id="projects">
<h2 class="projects-title"> Recent Projects</h2>
<div class="projects-container">
<div class="project-container project-card">
<img src="./assets/images/expenseTracker.png" alt="" class="project-pic" loading="lazy">
<h3 class="project-title">Expense Tracker</h3>
<p class="project-details">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Asperiores, atque?
</p>
<a href="www.mysite.com" class="project-link"> Check the Expense Tracker project</a>
</div>
<div class="project-container project-card">
<img src="./assets/images/netflixClone.png" alt="" class="project-pic" loading="lazy">
<h3 class="project-title">Netflix Clone</h3>
<p class="project-details">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita, alias?
</p>
<a href="www.mysite.com" class="project-link"> Check the Netflix Clone project</a>
</div>
<div class="project-container project-card">
<img src="./assets/images/greenyEarth.png" alt="" class="project-pic" loading="lazy">
<h3 class="project-title">Greeny Earth</h3>
<p class="project-details">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Culpa, provident.
</p>
<a href="www.mysite.com" class="project-link"> Check the Greeny Earth project</a>
</div>
</div>
</section>
<section class="contact" id="contact">
<h2>Let's get in touch</h2>
<div class="contact-form-container">
<div class="contact-form">
<form action="https://formspree.io/f/xyylngw" method="Post">
<div class="form-control">
<label for="name">Name</label>
<input type="text" name="sender-name" id="name" placeholder="Enter your name" class="input-feild" required>
</div>
<div class="form-control">
<label for="email">Email</label>
<input type="text" name="sender-email" id="email" placeholder="Enter your email" class="input-feild" required>
</div>
<div class="form-control">
<label for="messages">Messages</label>
<textarea name="messages" id="name" cols="30" rows="10" class="input-feild" required></textarea>
</div>
<input type="submit" value="Send now" id="submit-btn" class="submit-btn">
</form>
</div>
</div>
</section>
<div class="socials">
<a href="#" target="_blank">
<img src="./assets/icons/icons8-twitter-circled.gif" alt="twitter icon" loading="lazy" class="socicon">
</a>
<a href="#" target="_blank">
<img src="./assets/icons/icons8-instagram.gif" alt="Instagram icon" loading="lazy" class="socicon">
</a>
<a href="#" target="_blank">
<img src="./assets/icons/icons8-github.gif" alt="Github icon" loading="lazy" class="socicon">
</a>
<a href="#" target="_blank">
<img src="./assets/icons/icons8-linkedin-circled.gif" alt="LinkedIn icon" loading="lazy" class="socicon">
</a>
</div>
<footer>
<p class="copy">© Copyright 2022</p>
<p class="copy">Made with 💞 <a href="#">by Yesutor Sevor</a>
</p>
</footer>
<i class="scroll-up" id="scroll-up">
<img class="socicon up-arrow" src="./assets/icons/icons8-upward-arrow.gif" alt="scroll-up">
</i>
<script>
const scrollUp = document.querySelector("#scroll-up");
scrollUp.addEventListener("click", () =>{
window.scrollTo({
top: 0,
left: 0,
behaviour:"smooth"
});
});
const burger=document.querySelector("#burger-menu");
const ul = document.querySelector("nav ul");
const nav = document.toggle("show");
burger.addEventListener("click", () =>{
ul.classList.toggle("show");
});
const navlink =document.querySelectorAll(".nav-link");
navlink.forEach(link => {
link.addEventListener("click", ()=>{
ul.classList.remove("show");
})
})
</script>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons.js"
></script>
</body>
</html>