-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.23 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
<!doctype html>
<html class="w-screen h-screen" 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>Adam Zakaria site</title>
<link href="./style.css" rel="stylesheet">
</head>
<body>
<div class="main background overflow-auto">
<div class="main-left">
<div class="hello">
<h1>Hello</h1>
</div>
<img class="photo" src="./linkedin_blue.png" alt="Adam Zakaria">
<div class="about-me">
<div class="about-list">
<ul>
<li>
<img class="bullet" src="https://cdn-icons-png.flaticon.com/256/0/14.png" alt="bullet">
<p>Software Engineer</p>
</li>
<li>
<img class="bullet" src="https://cdn-icons-png.flaticon.com/256/0/14.png" alt="bullet">
<p>Books, music, basketball, and Halo</p>
</li>
</ul>
</div>
</div>
<div class="links-and-location">
<div>
<div>
<img src="https://cdn-icons-png.flaticon.com/256/484/484167.png" alt="pin">
<p>Cambridge, MA</p>
</div>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/61/61109.png" alt="linkedin">
<a href="https://www.linkedin.com/in/adam-zakaria-543847271/">LinkedIn</a>
</div>
</div>
</div>
</div>
<div class="main-right flex-1 flex flex-col h-full border-2 items-center gap-4">
<h1>Projects</h1>
<div class="flex flex-col items-center md:flex-row">
<div class="p-1 w-3/5 card flex flex flex-col">
<a href="https://cliptu.com">
<h2>Cliptu</h2>
<img src="cliptu.png" alt="cliptu"></img>
<p class="subtext">Find moments within videos.</p>
</a>
</div>
<div class="p-1 w-3/5 card flex flex flex-col">
<a href="https://fluent.monster">
<h2>Fluent</h2>
<img src="fluent_styled.png" alt="fluent"></img>
<p class="subtext">Learn 20 languages at once.</p>
</a>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>