forked from CSE110-Powell/Lab2_Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (105 loc) · 3.41 KB
/
index.html
File metadata and controls
119 lines (105 loc) · 3.41 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
<!DOCTYPE html>
<html>
<head>
<title>Meeting Minutes</title>
<link rel="icon" type="image/x-icon" href="unnamed.jpg">
<meta name="author" content="Ricardo Aguilar">
</head>
<body>
<main>
<p>Company Name1:</p>
</main>
<article>
<header>
<h1>Meeting Minutes</h1>
<p>pay attention!</p>
</header>
</article>
<footer>
<p>10.03.22</p>
</footer>
<h2>App development</h2>
<br>
<hr>
Resources:
<nav>
<a href="https://en.wikipedia.org/wiki/Agile_software_developmen">Agile</a>
<a href="https://www.yeezysupply.com/">Project Website</a>
</nav>
<div>
<p>Please make sure to ask <strong> questions via email to clarify</strong> any ambiguities <span
style="color:blue">r3aguila@ucsd.edu</span></p>
</div>
<br>
<br>
<section>
<h3>Attendance</h3>
<ul>
<li><b>Ricky</b></li>
<li><b>Jeremy</b></li>
<li><b>Isabella</b></li>
<li>Cassandra</li>
<li>Kyle</li>
<li><b>David</b></li>
</ul>
</section>
<br>
<br>
<h3>Agenda</h3>
<ol>
<li><i>Introductions/Ice Breakers</i></li>
<li>Go over User stories</li>
<li>Planning Poker</li>
<li>delegate tasks</li>
<li>Lunch</li>
</ol>
<details>
<summary>Meeting Room</summary>
<p>WLH 2005, start time: 5:00pm PST - 6:00 PST</p>
</details>
<p><em>The following below are pictures from meeting:</em></p>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20220311103841/Slide7.jpg" alt="pic1"
style="width:200px;height:200px;">
<img src=" https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/ABasicComputer.gif/481px-ABasicComputer.gif"
alt="pic1" style="width:200px;height:200px;">
<br>
<video width="320" height="240" controls>
<source src="IMG_0061.mp4" type="video/mp4">
</video>
<audio controls>
<source src="voice.mp3" type="audio/ogg">
</audio>
<form action="/action_page.php">
<fieldset>
<legend>Contact Info:</legend>
<label for="Oncall_month">Oncall Month:</label>
<input type="date" id="Oncall_month" name="Oncall_month"><br><br>
<datalist id="months">
<option value="01">
<option value="02">
<option value="03">
<option value="04">
<option value="05">
<option value="06">
<option value="07">
<option value="09">
<option value="10">
<option value="11">
<option value="12">
</datalist>
<label for="email">Employee Email:</label>
<input type="email" id="email" name="email"><br><br>
<textarea id="hello_world" name="hello" rows="3"
cols="40">Please type any questions you may have here</textarea>
<br>
<select name="note_rating" id="rating">
<option value="terrible">terrible</option>
<option value="bad">bad</option>
<option value="good">good</option>
<option value="fantastic">fantastic</option>
</select>
<button type="button">Done</button>
</fieldset>
</form>
</body>
</html>