forked from cs4241-19a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·100 lines (88 loc) · 3.9 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!--Bootrap overwrite modifications-->
<link href="exStyles.css" rel="stylesheet">
<title>a1-hcaouette -- CS4241 Assignment 1</title>
</head>
<body>
<!--top level container object, encompasses the entire page-->
<div class="container-fluid">
<!--navigation bar-->
<nav class="navbar navbar-expand-lg navbar-light">
<!--logo and name-->
<a class="navbar-brand" href="https://github.com/hcaouette/a1-gettingstarted">
<img src="https://i.imgur.com/bfmHsdG.jpg" width="50" height="60" class="d-inline-block align-top" alt="img">
<span>Hunter Caouette</span>
</a>
</nav>
<!--main content-->
<div class="row justify-content-center"><!--row 1-->
<div class="col"></div><!--left spacer-->
<div class="col centerBox">
<h1>Hunter Caouette</h1>
</div>
<div class="col"></div><!--right spacer-->
</div><!--close row 1-->
<!--row 2-->
<div class="row justify-content-center">
<!--left spacer-->
<!-- <div class="col"></div>
<div class="col"></div> -->
<div class="col-8 col-lg-2 contentBox">
<p>
Hello 4241, My name is Hunter Caouette. I'm a Junior Computer Science
Science major minoring in Chinese. Next term I'll be going to Hangzhou,
China for my IQP. I'm a member of Beta Theta Pi, and I like to play Magic:
The Gathering and Cook in my free time. This is actually my second class
with Prof Roberts (3041), and I'm really looking forward to this term.
</p>
</div>
<div class="col-8 col-lg-2 contentBox imgFrame">
<img src="https://i.imgur.com/yVg8o5c.jpg" class="d-inline-block align-top" alt="img">
</div>
<!--right spacer-->
<!-- <div class="col"></div>
<div class="col"></div> -->
</div><!--close row 2-->
<!--row 3-->
<div class="row justify-content-center">
<!--left spacer-->
<!-- <div class="col"></div>
<div class="col"></div> -->
<div class="col-8 col-lg-2 contentBox">
<h3>Classroom Experience</h3>
<ul>
<li>3733</li>
<li>3041</li>
</ul>
</div>
<div class="col-8 col-lg-2 contentBox">
<h3>Language Experience</h3>
<ul>
<li>HTML - some</li>
<li>CSS - some</li>
<li>Java - a lot</li>
<li>JS - some</li>
<li>Ruby - none</li>
<li>Python - some</li>
<li>Unit Testing - none</li>
</ul>
</div>
<!--right spacer-->
<!-- <div class="col"></div>
<div class="col"></div> -->
</div><!--close row 3-->
</div><!--end container-->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>