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
90 lines (86 loc) · 2.24 KB
/
index.html
File metadata and controls
90 lines (86 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial=scale=1.0">
<title>Lab2</title>
</head>
<body>
<header>
<div>Lab 2</div>
<nav>
<ul>
<li><a href="Memes1">Memes1</a></li>
<li><a href="Memes2">Memes2</a></li>
<li><a href="Memes3">Memes3</a></li>
</ul>
</nav>
<nav>
</nav>
</header>
<main>
<img src="https://ucsdnews.ucsd.edu/news_uploads/Resized_Geisel_Library_08.31.jpg"
alt="UCSD"
width="250"/>
<section>
<h1>UCSD</h1>
<p>University of California, San Diego</p>
</section>
<h2>CSE110</h2>
<h3>BanglunWu</h3>
<ol>
<li><input type="checkbox"/>Lab1</li>
<li><input type="checkbox"/>Lab2</li>
<li><input type="checkbox"/>Lab3</li>
</ol>
<b>This is b</b>
<br/>
<strong>This is strong</strong>
<br/>
<i>This is i</i>
<br/>
<em>This is em</em>
<br>
<a href="https://www.ucsd.edu/">Link to UCSD using a</a>
<br>
<audio src="https://www.youtube.com/watch?v=kJQP7kiw5Fk" controls="controls">Luis Fonsi - Despacito ft. Daddy Yankee</audio>
<video src="https://www.youtube.com/watch?v=kJQP7kiw5Fk" controls="controls">Luis Fonsi - Despacito ft. Daddy Yankee</video>
</main>s
<footer>
<h6 id="subscribe">Subscribe</h6>
<form onsubmit="alert('Subscribed')">
<input type="text" placeholder="Enter Email Address" />
<button>Submit</button>
</form>
<form>
<input type="radio" name="major" value="CS">CS<br>
<input type="radio" name="major" value="ECON">ECON
</form>
<form>
<input type="checkbox" name="Language" >C++<br>
<input type="checkbox" name="Language" >Java
</form>
<form>
<input type="date" name="date" >date
</form>
<form>
<fieldset>
<legend>Academic profile</legend>
Total Units:<input type="text"/>
GPA: <input type="text"/>
</fieldset>
</form>
<textarea rows="10" cols="30">I'm textarea</textarea>
<select>
<option value="ucla">UCLA</option>
<option value="ucsd">UCSD</option>
<option value="ucb">UCB</option>
<option value="mit">MIT</option>
</select>
</footer>
<details>
<summary>Copyright 2021.</summary>
<p>All pages and graphics on this web site are the property of UCSD.</p>
</details>
</body>
</html>