-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (99 loc) · 6.28 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery -->
<script type="text/javascript" src="http://cdn.jsdelivr.net/jquery/1.11.1/jquery.min.js"></script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Bootstrap Form Validation -->
<link rel="stylesheet" href="http://cdn.jsdelivr.net/jquery.bootstrapvalidator/0.5.0/css/bootstrapValidator.min.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@500&family=Noto+Serif+JP:wght@600&display=swap" rel="stylesheet">
<!-- CUSTOM (mh) -->
<title>Max Horowitz</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- ENTIRE PAGE CONTENT -->
<div class="entire-page font-google">
<!-- FLEX-BOX LAYOUT -->
<div class="flex-box">
<!-- HEADER (NAVBAR SECTION) -->
<nav id="navbar-with-scrollspy" class="section navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Max Horowitz</a>
<div class="navbar-nav mr-auto" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="#background">Background</a>
<a class="nav-link" href="#reach-out">Reach Out</a>
</div>
</div>
</div>
</nav>
<!-- CONTENT (REST OF WEBPAGE) -->
<div class="content scrollspy" data-bs-spy="scroll" data-bs-target="#navbar-with-scrollspy" data-bs-offset="0" tabindex="0">
<!-- BACKGROUND -->
<div class="content-container" id="background">
<div class="background-section font-google">
<img src="images/tux.jpg">
<h1 class="font-google largest">Hello!</h1>
<p class="font-google small">As of summer 2023, I am entering a full-time software engineering role at Viam, Inc. As an intern there in previous summers, I helped develop the team’s data management pipeline between robot and cloud. I graduated with my B.S. in Computer Science from Cornell University’s College of Engineering.</p>
</div>
</div>
<!-- THEMATIC BREAK -->
<hr>
<!-- REACH OUT -->
<div class="content-container" id="reach-out">
<div class="reach-out-section font-google">
<h1 class="font-google largest">Reach Out!</h1>
<p class="font-google small">I am always interested in new opportunities and would love to chat if you have anything in mind.</p>
<form id="reach-out-form" action="https://formspree.io/f/mrgjneon" method="POST">
<div class="font-google smaller mb-3">
<!-- name -->
<div class="entry">
<label for="name-prompt" class="form-label">Name</label>
<input type="text" class="form-control" id="name-prompt" name="name" placeholder="John Doe" aria-describedby="name-help">
</div>
<!-- email -->
<div class="entry">
<label for="email-prompt" class="form-label">Email</label>
<input type="email" class="form-control" id="email-prompt" name="email" placeholder="john@doe.com" aria-describedby="email-help">
<div id="email-help" class="form-text">I'll never share your email with anyone else.</div>
</div>
<!-- message -->
<div class="entry">
<label for="message-prompt" class="form-label">Message</label>
<textarea type="text" class="form-control" id="message-prompt" name="message" rows="4" style="resize: vertical;" placeholder="My name is John Doe." aria-describedby="message-help"></textarea>
</div>
<!-- submit -->
<div class="entry">
<button type="submit" class="btn btn-dark mb-3">Send</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- CUSTOM (mh) -->
<script ssrc="/assets/js/bootstrap.bundle.js"></script>
<script src="js/autoscroll.js"></script>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
</body>
</html>