-
Notifications
You must be signed in to change notification settings - Fork 0
/
miscellaneous.html
50 lines (49 loc) · 2.24 KB
/
miscellaneous.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Miscellaneous</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<!-- Navigation bar to switch between pages, taken from Bootstrap -->
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">🏠 Home</a>
<a class="navbar-brand" href="hobbies.html">🏃 My Hobbies</a>
<a class="navbar-brand" href="interests.html">🧪 My interests</a>
<a class="navbar-brand" href="miscellaneous.html">🚀 Miscellaneous</a>
</nav>
<h2>Here I'll post about anything I find interesting...</h2>
<!-- Buttons to collapse and hide content, taken from Bootstrap -->
<div id="buttons">
<div>
<!-- When clicked, the buttons display the text -->
<button class="toggle_button">Books I've been reading!</button>
<ul class="toggle_information">
<li>Until the End of Time, by Brian Greene</li>
<li>Can't Hurt Me, by David Goggins</li>
<li>The Fall, by Albert Camus</li>
<li>Homo Deus, by Yuval Noah Harari</li>
</ul>
</div>
<div>
<button class="toggle_button"> My current extracurriculars!</button>
<ul class="toggle_information">
<li>Engineers Without Borders</li>
<li>The Crimson Ed Board</li>
<li>Students for the Exploration and Development of Space</li>
</ul>
</div>
</div>
<div id="suggestions"></div>
<!-- Footer with contact information -->
<div id="footer">
Contact me: 📧
<a href="mailto:santiagoginer@college.harvard.edu">santiagoginer@college.harvard.edu</a>
<p>2020 Santiago Giner</p>
</div>
</body>
</html>