-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
71 lines (63 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Roberta Rothers</title>
<!-- <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'> -->
<!--put your Bootstrap stylesheet links below this comment and above style.css-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Create the navbar -->
<nav class="navbar navbar-expand-lg navbar-default">
<!-- Container inside the navbar header to span the page -->
<div class="container-fluid">
<!-- Creates the navbar header -->
<a class="navbar-brand" href="index.html">Roberta Rothers</a>
<!-- This complex script is just for a hamburger button, which will appear on smaller screens -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-list" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M2.5 11.5A.5.5 0 0 1 3 11h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 3 3h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z" /></svg>
<span class="menu"> Menu</span>
</button>
<!-- Links to include in navbar -->
<div class="collapse navbar-collapse" id="navbarNav">
<!-- Unordered list for links on navbar -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div> <!-- end .navbar-collapse -->
</div> <!-- end .container-fluid -->
</nav> <!-- end navigation bar -->
<div class="jumbotron">
<div class="container">
<h2>Contact</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-xs-10 col-xs-offset-1">
<h3><strong>Email:</strong> [email protected]</h3>
<h3><strong>Twitter:</strong> @robertarothers</h3>
<h3><strong>GitHub:</strong> robertarothers</h3>
</div>
</div>
</div>
<!--put your external script links here-->
<script type="text/javascript" src="lib/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="lib/bootstrap.min.js"></script>
</body>
</html>