-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
98 lines (85 loc) · 4.53 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<!-- DEVELOPER: Luke DaSilva, IS117-004, Spring 2022 -->
<title>Project 4</title>
<!-- Bootstrap core CSS -->
<link href="styles/bootstrap.css" rel="stylesheet">
<!-- Contact CSS -->
<link href="styles/contact.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="styles/carousel.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="index.html">Project 4</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Articles</a>
<div class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" href="articles/laserdisc.html">LaserDisc</a>
<a class="dropdown-item" href="articles/gameboy.html">Game Boy Color</a>
<a class="dropdown-item" href="articles/crt.html">CRT</a>
</div>
</li>
</ul>
<form class="form-inline mt-2 mt-md-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
</header>
<main role="main" class="container">
<div class="starter-template">
<h1 style="text-align: center;">Contact Us</h1>
<img id="headshot" src="images/me.jpg" class="img-fluid" alt="Luke DaSilva">
<p style="margin-left:35%;">
I'm Luke DaSilva, and I am the author of this website.<br>
I can type latin very well with help from a translator, and will detail below my greatest acheievments.
</p>
<ul class="list-group" style="margin-left:35%;">
<li class="list-group-item">Waking up in the morning</li>
<li class="list-group-item">Resisting the urge to learn PHP</li>
<li class="list-group-item">Winning 1st place in the 2019 Riverdell Highschool Hackathon, Hack Riverdell</li>
<li class="list-group-item">Winning 1st place in the Hacknet community event Hackerjam v2</li>
</ul>
<p style="margin-left:35%;"><br>You can reach me at [email protected], or at the below form.</p>
<br><br><br><br>
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Text</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="5"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</main><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="scripts/jquery-slim.min.js"><\/script>')</script>
<script src="scripts/popper.min.js"></script>
<script src="scripts/bootstrap.min.js"></script>
</body>
</html>