-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (79 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Website</title>
<link href="/styles/main.css" rel="stylesheet" />
</head>
<body>
<header role="banner">
<h1>Welcome to my Website!</h1>
<h3>I am Liora Vesnovaty :)</h3>
</header>
<br>
<div class="container">
<div class="about-me-container">
<div class="about-me">
<p>
<u>About Me:</u><br>
I'm a Computer Science student at the Hebrew University of Jerusalem, with just one semester remaining until graduation.<br>
I'm a motivated, thorough, and quick learner with a strong affinity for technology and solid coding skills.<br>
Comfortable working both in teams and independently, I'm especially passionate about software and web development.<br>
My journey in tech began in high school, where I majored in robotics and developed a fascination for programming.<br>
Since then, I've worked on several projects to deepen my skills, including participating in the HUJI Hackathon, where my team placed 4th.<br>
In my free time, I enjoy reading, traveling, and spending time with friends and family. <br>
I'm always excited to take on new challenges and explore fresh opportunities!
</p>
</div>
<div class="image-container">
<img src="me.jpg" alt="Your Image" />
</div>
</div>
<div>
<u>Skills:</u>
<ul class="skills-list">
<li>• Python</li>
<li>• C/C++</li>
<li>• Java</li>
<li>• SQL</li>
<li>• OOP</li>
<li>• OS</li>
<li>• Arduino</li>
<li>• Teamwork</li>
<li>• Communication</li>
<li>• Self-Learning</li>
</ul>
</div>
</div>
<div class="projects-container">
<a href="/projects_page.html">-- click to see some of my projects -- </a>
</div>
<br>
<div class="dark-mode-container">
<button id="dark-mode-toggle">
<span id="dark-mode-text">Switch to Dark Mode</span>
<img id="dark-mode-icon" src="moon_icon.png" alt="Toggle dark mode" />
</button>
</div>
<br>
<footer>
<p>Contact Me!</p>
<p>Email: lioravesnovaty@gmail.com</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/liora-vesnovaty/" target="_blank" aria-label="LinkedIn">
<img src="linkedin_icon.png" alt="LinkedIn" />
</a>
<a href="https://github.com/lioraVes" target="_blank" aria-label="GitHub">
<img src="github_icon.png" alt="GitHub" />
</a>
<a href="https://www.facebook.com/lioravesnovaty/" target="_blank" aria-label="Facebook">
<img src="facebook_icon.png" alt="Facebook" />
</a>
</div>
</footer>
<br>
<script type="module" src="/main.js"></script>
</body>
</html>