-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (85 loc) · 3.93 KB
/
index.html
File metadata and controls
104 lines (85 loc) · 3.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<title>aly's webpage</title>
</head>
<body>
<h1>Aly Kotb</h1>
<a class="banner-link" href="https://github.com/6829ASCS" target="_blank">GitHub</a>
<a class="banner-link" href="https://www.linkedin.com/in/aly-kotb/" target="_blank">Linkedin</a>
<div class="pfp-wrapper">
<img id="cover-image" src="images/default.png">
<div class="button-container">
<button class="cover-image-button" onclick="document.getElementById('cover-image').src='images/default.png'">#</button>
<button class="cover-image-button" onclick="document.getElementById('cover-image').src='images/holiday.png'">🌴</button>
<button class="cover-image-button" onclick="document.getElementById('cover-image').src='images/construction.png'">🏗️</button>
<button class="cover-image-button" onclick="document.getElementById('cover-image').src='images/space.png'">🚀</button>
</div>
</div>
<br>
Hey! My name is Aly and I'm a highschool senior based in Dubai.
<br>
<br>
I enjoy making things and working on silly projects (like this website).
<div id="clouds-container">
<img src="images/cloud1.png" id="cloud-1">
<img src="images/cloud2.png" id="cloud-2">
<img src="images/cloud3.png" id="cloud-3">
<img src="images/cloud4.png" id="cloud-4">
</div>
<div id="sky">
<i class="hidden-message">whoaaa clouds!!!! :0</i>
<br>
<br>
<h2>˚.⋆✶ recent projects ✶⋆.˚</h2>
<div class="project-gallery">
<div class="project-card">
<img src="images/fish.png">
<h3>fish_v1</h3>
<p>
A fish-shaped keychain PCB created in KiCad, consisting of a simple circuit that turns on an LED in dim light.
<br>
<br>
<a class="banner-link" href="https://github.com/6829ASCS/fish" target="_blank">view project</a>
</p>
</div>
<div class="project-card">
<img src="images/website.png">
<h3>this website!</h3>
<p>
A simple but dynamic personal website built using html, css & js.
<br>
<br>
<br>
<a class="banner-link" href="https://github.com/6829ASCS/personal-webpage" target="_blank">view project</a>
</p>
</div>
<div class="project-card">
<img src="images/cookie-cutter.png">
<h3>fish cookie cutter</h3>
<p>Created a cookie cutter using Onshape, with a design inspired by <a class="banner-link" href="https://www.youtube.com/@yooohon/videos" target="blank">Johann Banta's</a> work.</p>
</div>
</div>
<h2>˚.⋆✶ about me ✶⋆.˚</h2>
<div id="terminal">
<div id="output"></div>
<div class="input-line">
<span class="prompt">></span>
<input type="text" id="commandInput" autocomplete="off" />
</div>
</div>
<script src="terminal.js"></script>
<div class="footer-image-wrapper">
<img id="surface-image" src="images/surface.png">
<a href="https://en.wikipedia.org/wiki/Ceratopsia" target="_blank">
<img id="fossil-image" src="images/fossil.png">
</a>
<div class="footer-text"><i>thanks for visiting my webpage :0</i></div>
</div>
</div>
</body>