forked from YasserDbeis/SoDA-Bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (43 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FIRST LAST Portfolio</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
</head>
<body class="background">
<p class="page-title" id="intro_page_title">FIRST LAST<span id="cursor">_</span></p>
<div>
<img id="profile_pic" class="center" src="https://github.com/asusoda.png">
<p class="summary-content">
Computer Science Student @ <span id="ASU">ASU</span><br>
Graduating 20XX 🎓
</p>
</div>
<div class="center">
<button onclick="location.href = './projects.html'" class="toggle-button" id="projects_toggle">
./projects
</button>
<button class="toggle-button" id="experience_toggle">
./experience
</button>
</div>
<table class="center" id="experience_table"></table>
<div style="position: fixed; bottom: 0; left: 0;" class="social-icons">
<a target="_blank" href="https://www.instagram.com/asu_soda/">
<img src="./assets/instagram-brands.svg" height="50" width="50" alt="My Instagram">
</a>
<a target="_blank" href="https://twitter.com/asu_soda">
<img src="./assets/twitter-brands.svg" height="50" width="50" alt="My Twitter">
</a>
<a target="_blank" href="https://linkedin.com/company/thesoda">
<img src="./assets/linkedin-in-brands.svg" height="50" width="50" alt="My LinkedIn">
</a>
<a target="_blank" href="mailto:asu@thesoda.io">
<img src="./assets/envelope-regular.svg" height="50" width="50" alt="My email">
</a>
</div>
<script src="./cursor.js"></script>
<script src="./experience_table.js"></script>
</body>
</html>