-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (68 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Page</title>
<meta name="description" content="Description of my page which is that pumpkins are really great.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="circle"></div>
<section>
<h1>Hello World</h1>
<h2>This is an h2</h2>
<h6>This is an h6</h6>
<p>This is a paragraph</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur cupiditate cumque quaerat, sint alias, veritatis reiciendis quam, labore consectetur eius odio harum consequuntur ducimus eum eaque laborum dolores aut eligendi?</p>
<img
width="300px"
src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.istockphoto.com%2Fphotos%2Ffall-pumpkins&psig=AOvVaw2LgECP3yg7PIKofBZwzhfD&ust=1728982330522000&source=images&cd=vfe&opi=89978449&ved=0CBEQjRxqFwoTCICUv6C_jYkDFQAAAAAdAAAAABAE"
alt="Group of pumpkins from a birds eye view."
/>
<img src="https://t4.ftcdn.net/jpg/01/20/39/75/360_F_120397575_DH3sTAOcbR7qagQrt9jvjZDJjEROnF1r.jpg" alt="">
<ul id="unordered-list" class="gradient">
<li>The first element</li>
<li>The second element</li>
</ul>
<ol>
<li>The first element</li>
<li>The second element</li>
<li>The third element</li>
<li>The fourth element</li>
<li>The fifth element</li>
</ol>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>City</th>
</tr>
<tr>
<td>Joe Smith</td>
<td>[email protected]</td>
<td>Miami</td>
</tr>
<tr>
<td>Jake Johnson</td>
<td>[email protected]</td>
<td>Detroit</td>
</tr>
</table>
</section>
<section>
<form method="">
<label for="name">Name:</label>
<input id="name" type="text"/>
<label for="email">Email:</label>
<input id="email" type="email">
<select name="" id="">
<option value="">Cooking Bootcamp</option>
<option value="">Tattoos Bootcamp</option>
</select>
<textarea name="" id="">Explain</textarea>
<button type="sumbit">Submit</button>
</form>
</section>
</body>
</html>