-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
69 lines (56 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="icon" type="image/png" href="media/favicon.png" sizes="16x16">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<script src="main.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<title>An Interactive Guide to Strength Training</title>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="create.html">Create A Program</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<h1 id="contact_title">Contact</h1>
<div id="contact_container">
<img id="me" src="media/me.jpeg">
<div id="contact_content">
<h2>Hi, I'm Allie!</h2>
<h3>Contact me by...</h3>
<div id="contact_options">
<form>
<h4>...filling out this form</h4>
<label for="fname">First Name:</label><br>
<input type="text" name="fname" id="fname" required><br>
<label for="lname">Last Name:</label><br>
<input type="text" name="lname" id="lname"><br>
<label for="email">Email Address:</label><br>
<input type="email" name="email" id="email" required><br>
<label>Message:</label><br>
<textarea id="message" cols="30"></textarea><br>
<input type="submit" value="Submit"></input>
</form>
<div id="contact_locations">
<h4>...or find me at the following locations!</h4>
<p>Home Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>School Email: <a href="mailto:[email protected]">[email protected]</a></p>
<a href="https://www.linkedin.com/in/allie-feldman"><img class="logo_link" src="media/linkedin_logo.png"></a>
<a href="https://www.instagram.com/allie.feldman_/"><img class="logo_link" src="media/instagram_logo.png"></a>
<a href="https://www.facebook.com/allie.feldman.790/"><img class="logo_link" src="media/facebook_logo.svg"></a>
</div>
</div>
</div>
</div>
</body>
</html>