-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (55 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head id="common-head">
<meta charset="UTF-8">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(function() {
$("#common-head").load("common-head.html");
});
</script>
</head>
<body>
<iframe src="header.html" style="width:100%; height:220px;" frameborder="0" allowtransparency="true" scrolling="no"></iframe>
<meta charset="UTF-8">
<main class="container-fluid">
<div class="row margin-b-2">
<div class="col-sm-4 text-center">
<img id="img-override" class="img-responsive image-container center " src="images/siddhartha_gupta.jpg" alt="Picture of Siddhartha Gupta" style="height:200px;">
</div>
<div class="col-sm-4">
<h4>Dunes, Dreams & Spice</h4>
<div class="quote">
<p>
Come you lost Atoms to your Centre draw.<br>
And be the Eternal Mirror that you saw.<br>
   Rays that have wander'd into Darkness wide.<br>
Return and back into your Sun subside
</p>
<cite>~ Farid al-Din Attar</cite>
</div>
</div>
<div class="col-sm-4">
<div class="poem">
My journey has taken me<br>
Through halls of academia 🎓<br>
And trenches of problem-solving 🤔💻<br>
Craft honed to an art form 🎨<br>
<br>
But when coding's done<br>
I turn to books and stories 📚<br>
Philosophy and science fiction 🤔🚀<br>
A world of literary glories 🌎📖<br>
<br>
And when not lost in words<br>
I venture out to new lands 🌍🧭<br>
Exploring different cultures 🗺️🌍<br>
Finding lost roads again 🛣️👀<br>
</div>
</div>
</div>
<hr>
</main>
<iframe src="footer.html" style="width:100%; height:100px;" frameborder="0" allowtransparency="true" scrolling="no"></iframe>
</body>
</html>