-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (99 loc) · 3.91 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
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
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sam Lu</title>
<!-- Meta tags for SEO and social sharing -->
<meta property="og:title" content="Sam Lu" />
<meta property="og:type" content="article" />
<meta
property="og:description"
content="I'm Sam, a UT Austin CS student and software engineeer."
/>
<meta name="author" content="Sam Lu" />
<meta
name="description"
content="I'm Sam, a UT Austin CS student and software engineeer."
/>
<meta name="twitter:card" content="summary" />
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- Import Inter font -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
</style>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-H1K8QYFCV5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-H1K8QYFCV5");
</script>
</head>
<body>
<!-- The wrapper and content divs set margins and positioning -->
<div class="wrapper">
<div class="content" role="main">
<div class="main-text">
<div>
<h1 class="title">
hello! i'm <span style="color: #3c6dec"> sam</span> 😎
</h1>
<p id="byline">no i'm not the dr. seuss character</p>
</div>
<p class="body-paragraph">
currently studying
<a href="https://www.cs.utexas.edu/" target="_blank">computer science</a>
and
<a href="https://math.utexas.edu/" target="_blank">mathematics</a>
at
<a href="https://www.utexas.edu/" target="_blank">ut austin</a>,
hook 'em!
</p>
<p class="body-paragraph">
10x software engineer/data science intern at FAANG+ level companies. yay!
</p>
<p class="body-paragraph">
strategist at
<a href="https://www.perplexity.ai/" target="_blank">perplexity.ai</a> (better chatgpt),
p.s your school might have
<a href="https://www.perplexity.ai/backtoschool" target="_blank">free pro</a> :)
</p>
<p class="body-paragraph">
more about me:
</p>
<ul class="bullet-point">
<li>interested in entrepreneurship and fintech</li>
<li>scouting travel hotspots with geoguessr</li>
<li>hoping to become an accredited investor</li>
<li>won some cool college hackathons</li>
<li>fluent in mandarin and maybe english</li>
<li>ordering hot chocolate from coffee shops</li>
<li>former aspiring gaming content creator</li>
<li>only stem olympiad geek from my hs</li>
<li>leading some student organizations</li>
<li>coded this website on my mobile phone</li>
<li>[insert some other random facts here]</li>
</ul>
<p class="body-paragraph" style="color: #22a8f5">
<a href="mailto:[email protected]" target="_blank">email ↗</a>
<a href="https://www.linkedin.com/in/samblu" target="_blank">linkedin ↗</a>
<a href="https://github.com/PresidentSam100" target="_blank">github ↗</a>
<a href="https://www.instagram.com/presidentsamlu" target="_blank">insta ↗</a>
</p>
<p class="body-paragraph" style="color: #22a8f5">
<a href="https://presidentsam100.github.io/" target="_blank">this website (aka recursion stuff lol) ↗</a>
</p>
<p id="byline">made by sam lu (not you)</p>
</div>
</div>
</div>
</body>
</html>