-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
50 lines (49 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="node_modules/swup/dist/swup.min.js"></script>
<script defer src="script.js"></script>
</head>
<header>
<nav>
<div class="header-nav">
<a href="/ucsdcolleges.github.io/index.html"><img class="logo" src="images/UCSD_logo.png" alt="image of ucsd logo"></a>
</div>
<div class="header-nav">
<ul id="list">
<li><a href="/ucsdcolleges.github.io/revelle.html"> Revelle</a></li>
<li><a href="/ucsdcolleges.github.io/muir.html"> Muir</a></li>
<li><a href="/ucsdcolleges.github.io/marshall.html"> Marshall</a></li>
<li><a href="/ucsdcolleges.github.io/warren.html"> Warren</a></li>
<li><a href="/ucsdcolleges.github.io/roosevelt.html"> Roosevelt</a></li>
<li><a href="/ucsdcolleges.github.io/sixth.html"> Sixth</a></li>
<li><a href="/ucsdcolleges.github.io/seventh.html"> Seventh</a></li>
</ul>
<input type="checkbox" id="check" onclick="openMenu()">
<label for="check" class="checkbtn">
<i class="material-icons" style="font-size: 3rem;"> menu</i>
</label>
</div>
</nav>
</header>
<body>
<main id="swup" class="transition-fade">
<div class="contact-section">
<h1>Contact Me</h1>
<div class="border"></div>
<form class="contact-form" action="mail.php" method="post">
<input type="text" name="name" class="contact-form-text" placeholder="Your Name">
<input type="email" name="email" class="contact-form-text" placeholder="Your Email">
<textarea class="contact-form-text" name="message" placeholder="Your message"></textarea>
<input type="submit" class="contact-form-btn" value="Submit">
</form>
</div>
</main>
</body>
</html>