-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (80 loc) · 2.39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tamir Cohen</title>
</head>
<style>
/* Add CSS styling for the indented paragraph */
.indented {
text-indent: 20px; /* You can adjust the value according to your preference */
}
</style>
<body>
<!-- <div id="app"></div> -->
<canvas id="bg"></canvas>
<main>
<header>
<h1>Tamir Cohen</h1>
<p>Software Engineer 💻🚀</p>
</header>
<section>
<h2>👨 About Me</h2>
<p>
My name is Tamir Cohen Iam <span id="age"></span> years old.
</p>
<p>
I am a Software Engineer, I love to code 💻 and learn new things.
</p>
<p>
I live in Tel Aviv in 🇮🇱
</p>
<script>
const birthYear = 1999; // replace with the actual birth year
const currentYear = new Date().getFullYear();
const age = currentYear - birthYear;
const ageElement = document.getElementById('age');
ageElement.textContent = age;
</script>
</section>
<section class="left">
<h2>🙆♂️ Stuff I like to do</h2>
<p>
I'm a Low level programmer 🐧 and python developer 🐍.
</p>
<p>
I also like to do some web development 🌐, and Computer Vision stuff.
</p>
<p>
I love to swim 🏊♂️ baking bread 🍞 and hike abroad 🏕.
</p>
</section>
<section class="light">
<h2>👨💻 Work Experience </h2>
<p>
Software Engineer at IDF (2022 - Present)
</p>
<p class="indented">Linux Kernel 🐧 and python 🐍 </p>
<p>
Embedded Software Engineer at IDF (2019 - 2022)
</p>
<p class="indented">C and reverse engineering 🤖</p>
</section>
<section class="left">
<h2>🧑🎓 education</h2>
<h3>Tel Aviv University - MEng electrical engineering</h3>
<p>
Specializing in deep learning 🤖
</p>
<h3>Tel Aviv University - BSc physics ⚛️</h3>
</section>
<section class="right">
<h2>☎️ Contact Me</h2>
<h3>[email protected]</h3>
</section>
</main>
<script type="module" src="./main.js"></script>
</body>
</html>