-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
35 lines (33 loc) · 1.76 KB
/
contact.html
File metadata and controls
35 lines (33 loc) · 1.76 KB
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
<html>
<head>
<meta charset="utf-8" />
<title>Contact</title>
<link href="styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Great+Vibes|Press+Start+2P|Sacramento|Tangerine" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<link rel="icon" href="https://media0.giphy.com/media/4PUkqN8QQsaFIkqi8a/source.gif" type="image/gif">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="contact.js"></script>
</head>
<body>
<div class="row footer">
<div class="p"><a href="index.html" class="link">Farrah Yee</a></div>
<div class="p"><a href="aboutme.html" class="link">About Me</a></div>
<div class="p"><a href="portfolio.html" class="link">Portfolio</a></div>
<div class="p"><a href="contact.html" class="link">Contact</a></div>
</div>
<h1 class="title">Contact</h1>
<h2 class="continfo">Contact me at:</h2>
<p class="continfo"><a href="https://github.com/yayscripted" target="_blank">Github: yayscripted</a></p>
<p class="continfo">Email: classprojectjn@gmail.com</p>
<div class="rates">
<h3>Rate this portfolio?</h3>
5<input type="radio" name="rate" value="5"><br>
4<input type="radio" name="rate" value="4"><br>
3<input type="radio" name="rate" value="3"><br>
2<input type="radio" name="rate" value="2"><br>
1<input type="radio" name="rate" value="1"><br>
<input type="button" value="Rate!" id="button">
</div>
</body>
</html>