-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (59 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
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/html5reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="images/alphago_icon.png"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6L77FSR216"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6L77FSR216');
</script>
<title>Contact Me</title>
</head>
<body>
<div class="skip"><a href="#main">Skip to Main Content</a></div>
<div class="top"><a href="#header">Back To Top</a></div>
<header id="header">
<nav>
<img src="images/alphago_logo.png", alt="AlphaGo Logo" class="alphago-logo"/>
<ul class="nav_links">
<li><a href="index.html">Home</a></li>
<li><a href="go.html">Go</a></li>
<li><a href="alphago.html">Approach</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="papers.html">Papers</a></li>
<li><a href="contact.html" class="current-page">Contact</a></li>
</ul>
</nav>
<h1>Contact Me</h1>
<!-- <p>AlphaGo is the first computer program to defeat a professional human Go player, the first to defeat a Go world champion, and is arguably the strongest Go player in history.</p> -->
</header>
<main id="main">
<div class="form-container">
<form action="https://formspree.io/f/xayayygk" method="POST">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your first name">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your email">
<label for="comments">Comments</label>
<textarea id="comments" name="comments" placeholder="What do you think about this website..."></textarea>
<input type="submit" value="Submit">
</form>
</div>
</main>
<footer>
<p>University of Michigan School of Information <br/>
© Rui Ding - Web Design Project Winter 2021</p>
</footer>
</body>
</html>