forked from CSE110-SP21/Lab2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (135 loc) · 6.36 KB
/
Copy pathindex.html
File metadata and controls
156 lines (135 loc) · 6.36 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang= "en">
<head>
<meta charset="UTF-8" />
<title>Meeting Minutes</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<header>
<h1>Intro Team Meeting</h1>
<h2>Meet the Team!</h2>
<h3>Date: 10/3/2021</h3>
</header>
<main>
<nav>
<ol>
<li><a href="#Attendance">Attendance</a></li>
<li><a href="#Agenda">Agenda</a></li>
<li><a href="#Media">Diagrams/Media</a></li>
</ol>
</nav>
<div class="Intro">
<section>
<h3 id="Attendance">Attendance:</h3>
<ul>
<li>Johnny Padungyothee</li>
<li>Lebron James</li>
<li>Anthony Davis</li>
<li>Carmelo Anthony</li>
<li>Russell Westbrook</li>
<li>Dwight Howard</li>
</ul>
</section>
<section>
<h3 id="Agenda">Agenda:</h3>
<ol>
<li>Name Introductions & Icebreaker</li>
<li>Previous Computer Science Experiences</li>
<li>Discuss Favorite Programming Languages</li>
<li>Brainstorming Ideas</li>
</ol>
</section>
</div>
<h3>Unfinshed Business</h3>
<ol>
<li>None!</li>
</ol>
<h3>New Business</h3>
<ul>
<li><strong>Work Habits</strong></li>
<li><b>Personal Pet Peeves</b></li>
<li><i>Availability</i></li>
</ul>
<details>
<summary>Question/Comments/Concerns?</summary>
<ul>
<li><em>Team Leader?</em></li>
</ul>
</details>
<h3 id="Media">Diagrams/Media</h3>
<p>Pictured below is a diagram of Johnny's poster<br>presentation from Spring 2021</p>
<img class="" src="poster.png" alt="ERSP Poster Prensentation" height="300" width="300">
<hr>
<video controls width="500">
<source src="conceptvid.mp4" type="video/mp4">
</video>
<hr>
<figure>
<figcaption>Current Favorite Song:</figcaption>
<audio controls src="weekend.mp3"></audio>
</figure>
<p><em>Please</em> fill out this form so we can get to know each other better</p>
<form>
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="date">Date:</label>
<input type="date" id="date" name="date">
<p>College?</p>
<input type="radio" id="Revelle" name="College">
<label for="Revelle">Revelle</label>
<input type="radio" id="Muir" name="College">
<label for="Muir">Muir</label>
<input type="radio" id="Marshall" name="College">
<label for="Marshall">Marshall</label>
<input type="radio" id="Warren" name="College">
<label for="Warren">Warren</label>
<input type="radio" id="ERC" name="College">
<label for="ERC">ERC</label>
<input type="radio" id="Sixth" name="College">
<label for="Sixth">Sixth</label>
<input type="radio" id="Seventh" name="College">
<label for="Seventh">Seventh</label>
<br>
<p>What music genres do you listen to?</p>
<input type="checkbox" id="r&b" name="r&b">
<label for="r&b">R&B</label>
<input type="checkbox" id="pop" name="pop">
<label for="pop">Pop</label>
<input type="checkbox" id="rap" name="rap">
<label for="rap">Rap</label>
<input type="checkbox" id="country" name="country">
<label for="country">Country</label>
<br><br>
<label for="Memory">What is your favorite childhood memory?</label>
<br>
<textarea id="Memory" name="memory" rows="5" cols="25"></textarea>
<br><br>
<label for="anime">What is your favorite anime?</label>
<input list="anime-choices" id=anime name=anime>
<datalist id="anime-choices">
<option value="Jujutsu Kaisen"></option>
<option value="Demon Slayer"></option>
<option value="Naruto"></option>
<option value="86 Eighty-Six"></option>
</datalist>
<br><br>
<label for="bending">What element would you bend from Avatar the Last Airbender?</label>
<select id="bending" name=bending>
<option value="">Please choose an option</option>
<option value="Water">Water</option>
<option value="Earth">Earth</option>
<option value="Fire">Fire</option>
<option value="Air">Air</option>
</select>
<br><br>
<button type="submit">Submit</button>
</fieldset>
</form>
</main>
<footer>
<p><span class="Outro" style="color:blueviolet">Have a wonderful rest of the day!</span> If there are any questions feel free to send a message in the slack channel.</p>
</footer>
</body>
</html>