-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* makes smaller if not on mobile */
@media (min-width:800px){
.container {
width: 40%;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-transparent mb-3">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link active" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="projects.html">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="blog.html">Blog</a></li>
<li class="nav-item"><a class="nav-link" target="_blank" href="resume.pdf">Resume</a></li>
</ul>
</nav>
<div class="container text-center">
<h1>Welcome to My Website!</h1><br>
<p>
I'm Christian Doucette, and I am a fourth year studying computer science and math at the University of Chicago.
</p>
<p>
Check out my resume for more details on my skills and experience, or my GitHub to see my projects.
</p>
<br>
<div class="row">
<div class="col text-right">
<a href="mailto:cdoucette@uchicago.edu"><i style="font-size:30px" class="fa"></i></a>
</div>
<div class="col text-center">
<a href="https://github.com/christian-doucette" target="_blank"><i style="font-size:30px" class="fa"></i></a>
</div>
<div class="col text-left">
<a href="https://www.linkedin.com/in/christian-doucette-364224190/" target="_blank"><i style="font-size:30px" class="fa"></i></a>
</div>
</div>
</div>
</body>
</html>