generated from digital-product-jam-2023/template-profile-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (103 loc) · 3.83 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
<html>
<head>
<meta charset=utf-8>
<title>Aviram's intro page</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="container">
<div id="main">
<div class="intro">
<div id="introTitle">
<h1>Hi! Welcome to my intro page</h1>
</div>
<div id="mainButtons">
<button type="button" class="changeStyleButton">Randomize colors!</button>
<button type="button" class="resetColorButton">Reset colors</button>
<button type="button" class="collapseAllButton">Collapse all</button>
<button type="button" class="expandAllButton">Expand all</button>
</div>
<div id="introContent" class="content">
<p>
I'm a software engineer who likes to play music instruments, programming, and running.
</p>
</div>
</div>
<div class="university">
<div id="uniTitle" class="collapsible">
<h2>University (click me!)</h2>
</div>
<div id="universityContent" class="content">
<p>
I started my computer science BSc in HUJI on Oct 19', and I am about to finish it this semester.</br> I
enjoyed most
of it. Some of my favourite courses are:
<ul>
<li>Object Oriented Programming</li>
<li>Computational models, computability and complexity</li>
<li>Human-computer interaction</li>
</ul>
<p>
Some of them are <em>more theoretical</em> and some are <em>more practical</em> and requires
self-learning.
</p>
</p>
</div>
</div>
<div class="work">
<div id="workTitle" class="collapsible">
<h2>Work</h2>
</div>
<div id="workContent" class="content">
<p>
I work at Microsoft.
</p>
<div id="companyLogo" class="image-cropper">
<img src="microsoft.gif" alt="Microsoft logo" title="Microsoft company logo" />
</div>
<p>
I am part of <a
href="https://learn.microsoft.com/en-us/azure/defender-for-cloud/defender-for-cloud-introduction">Microsoft
Defender for Cloud</a> team,</br> who works on <strong>security applications</strong> for cloud
services, in and outside of Azure (Microsoft's cloud)
</p>
</div>
</div>
</div>
<div id="play">
<div id="playTitle" class="collapsible">
<h2>Play</h2>
</div>
<div id="playContent" class="content">
<p>
I play guitar and other instruments. I have some youtube videos where I covered some songs with friends, like
this one:
<div id="yanirSong">
<iframe width="320" height="200" src="https://www.youtube.com/embed/uZjKsvg1kj0" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<p>
I was also lucky to teach music instruments and production in my hometown, like in this project, where
high-school kids wrote, produced and recorded their own songs:</br> </br>
<div id="mekorockSong">
<iframe width="320" height="200" src="https://www.youtube.com/embed/tQTqd_SIoWs" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</p>
</p>
</div>
</div>
</br>
<div id="contact">
<button>Email me</button>
</div>
</div>
</div>
</body>
<script src="index.js"></script>
</html>