-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 2.58 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
<!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>Motty Roth</title>
<link rel="stylesheet" href="./styles/main.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
</head>
<body>
<div class="container">
<div id="particles-js"></div>
<div class="background-layer">
</div>
<div class="content">
<img src="./assets/images/motty-roth.jpg" alt="motty roth">
<div class="txt">
<div class="greeting">
<div class="hello">Hello | Welcome</div>
<div class="name">My name is <img id="speaker" src="./assets/images/speaker.svg" onclick="playName()"> Motty Roth</div>
<ul>
<li><a href="mailto:[email protected]"><img src="./assets/images/email.svg" alt="email icon"></a></li>
<li><a href="https://github.com/mordechairoth" target="_blank"><img src="./assets/images/github.svg" alt="GitHub icon"></a></li>
<li><a href="https://www.linkedin.com/in/mordechai-roth-37294317b/" target="_blank"><img src="./assets/images/linkedin.svg" alt="LinkedIn icon"></a></li>
</ul>
</div>
<div class="introduction">
<p>
I'm a <span id="age">23</span> year old, Montreal-born, Canadian-American entrepreneur with nerdish tendencies.
</p>
<br>
<p>I'm a Software Engineer.</p>
<br>
<p>So are you looking for a professional, communicative & punctual software engineer with extensive development skills?
If you have an application you are interested in developing, a problem that needs solving or a
project that needs rescuing, I'd love to help you with it.
</p>
<br>
<p>Send me an email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</div>
<audio id="play-motty-roth" src="./assets/sounds/motty-roth.mp3"></audio>
<script src="./scripts/script.js"></script>
<script src="./scripts/particles.js"></script>
</body>
</html>