forked from CSE110-FA22/Lab2_Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (95 loc) · 2.98 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--document metadata-->
<meta charset="UTF-8">
<title>Meeting Minutes</title>
<link rel="author" href="/about">
</head>
<body>
<h1>Pic of the day</h1>
<img src="wp4040614-2k-wallpapers.jpg" alt="Da head" width="500" height="600">
<!--content sectioning-->
<header>
<div>meeting section</div>
<h1>First Brain Storm for team 28</h1>
<h4>date:2022/10/08</h4>
</header>
<main>
<audio controls>
<source src="652983__josefpres__bass-loops-093-with-drums-short-loop-120-bpm.wav" type="audio/wav">
Your browser does not support the audio element.
</audio>
<video width="320" height="240" controls>
<source src="WeChat_20221009214600.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<section>
<h3>brainstorming</h3>
<p>
<em>We are brainstorming right now, storm brain out of us.</em>
</p>
</section>
<section>
<h3>check-ins</h3>
<hr>
<p>
We are checking in right now, <br>check really in.
</p>
<hr>
</section>
<section>
<h3>documentation</h3>
<p>
Documenting the brainstorm summary.
</p>
</section>
<section>
<div>attendence list</div>
<h2><b>attendence list</b></h2>
<nav>
<ul>
<li><i>Kevin</i></li>
<li>Steven</li>
<li>henry</li>
</ul>
</nav>
<strong>un-attendence list</strong>
<nav>
<ol>
<li><i>Kelvin</i></li>
<li>Steve</li>
<li>henri</li>
</ol>
</nav>
</section>
<section>
<details>
<summary>the name list</summary>
<p>Kevin,Kelvin,Steven,Steve,Henry,henri</p>
</details>
</section>
</main>
<footer>
<p>Author: <span>Kevin Zhang</span></p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
<section>
<h1>The part for form</h1>
<form>
<button>
</button>
<fieldset>
<input>
<datalist>
</datalist>
<select>
<option>apple</option>
</select>
<textarea>
</textarea>
</fieldset>
</form>
</section>
</body>
</html>