-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (63 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Side Hustle Training</title>
</head>
<body>
<main>
<div>
<h1> Side Hustle Training </h1>
<h3> HTML/CSS/JS Track</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Soluta quidem corporis, omnis commodi inventore beatae iure quaerat nam
magni aperiam praesentium repellat dignissimos consequatur laborum voluptates aliquam.
Asperiores, vitae tempore.
</p>
<a href="https://www.freecodecamp.org/learn"> View site </a>
</div>
<br />
<div>
<table style="width: 100;">
<tr>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
</tr>
<tr>
<td>9am Lecture</td>
<td>12am Lecture</td>
<td>Study break</td>
</tr>
<tr>
<td>10am Lecture</td>
<td>Study Break</td>
<td>2pm Lecture</td>
</tr>
</table>
</div>
<div>
<form>
First Name: <br>
<input type="text" name="Firstname"> <br>
E-mail Address: <br>
<input type="text" name="email">
</form>
</div>
<br>
<div>
<audio controls>
<source src="001.mp3" type="audio/mp3">
</audio>
<br>
<video controls height="500" width="500">
<source src="Ghost of Tsushima_20221110225907.mp4" type="video/mp4">
</video>
</div>
</main>
<footer>
</footer>
</body>
</html>