-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (59 loc) · 2.13 KB
/
index.html
File metadata and controls
70 lines (59 loc) · 2.13 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
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
<!doctype html>
<!--
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>About Myself</title>
<link href="./style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>About Me By Alex</h1>
<a href="./projects.html" target="_blank">Link to my Projects</a>
<p>I am a student at Green River College.</p>
<h2>My favorite foods</h2>
<ul>
<li>Pizza</li>
<li>French Fries</li>
<li id = "mostFavorite">Salmon</li>
</ul>
<h2>My morning routine</h2>
<ol>
<li>Wake up</li>
<li>Doomscroll</li>
<ul>
<li><a href="https://x.com/" target="_blank">Twitter</a></li>
<li><a href="https://www.instagram.com/" target="_blank">Instagram</li></a>
<li class = "favorite"><a href="https://www.tiktok.com/" target="_blank">Tiktok</li></a>
<li class = "favorite"><a href="https://bsky.app/" target="_blank">Bluesky</li></a>
</ul>
<li>Shower</li>
<li>Get Dressed</li>
<li>Breakfast</li>
<li>Brush Teeth</li>
</ol>
<form action="https://script.google.com/macros/s/AKfycbz6cewkwC6P68-qotOokhBb_v1Zxr3aozRItX-rFramd4p_7R3XzwHLj7o1mN-6Okez/exec" method="post">
<div>
<label for="yourCollege">College: </label>
<input id="yourCollege" name="college" type="text" required>
</div>
<div>
<input id="associateOption" type="radio" name="degreeType" value="AS">
<label for="associateOption">Associates</label>
<input id="bachelorOption" type="radio" name="degreeType" value="BS">
<label for="bachelorOption">Bachelors</label>
</div>
<div>
<label for = "yearSelector">Class Year</label>
<select id ="yearSelector" name = "year">
<option value = "F">Freshman</option>
<option value = "So">Sophomore</option>
<option value = "J">Junior</option>
<option value = "Se">Senior</option>
</select>
</div>
<button type="submit">Send information!</button>
</form>
</body>
</html>