-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<title>Aaron Li's User Page</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<h1>Aaron Li's User Page</h1>
<p>Paragraph <b>Bold</b> test <code>code</code></p>
<img src="https://via.placeholder.com/638x120?text=Placeholder+Image" alt="Placeholder">
<table style="width:80%">
<tr>
<th>Test</th>
<th>Test2</th>
</tr>
<tr>
<td>tiohasnetho</td>
<td>drlntshdlr</td>
</tr>
</table>
<form id="form">
<label for="a">Text thing:</label><br/>
<input type="text" id="textthing" name="textthing" value="placeholder"><br>
<input type="email"/><br/>
<input type="file"/><br/>
<input type="color"/><br/>
<input type="radio" name="radio" value="option 1"/>
<label for="radio">option 1</label><br/>
<input type="radio" name="radio" value="option 2"/>
<label for="radio">option 2</label><br/>
<input type="radio" name="radio" value="option 3"/>
<label for="radio">option 3</label><br/>
<input type="datetime-local"/><br/>
<input type="number"/><br/>
<input type="tel"/><br/>
<input type="checkbox" name="checkbox"/>
<label for="checkbox">Yes?</label><br/>
<input type="submit" value="Submit">
</form>
</body>
<footer>
<h2>Footer:</h2>
</footer>
</html>