-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (67 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
71 lines (67 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Web2 Class</title>
<link
rel="shortcut icon"
href="/Image/facebook logo.jpeg"
type="image/x-icon"
/>
<link rel="stylesheet" href="web2css.css" />
<!-- <style>
body {
background-color: green;
color: crimson;
font-size: large;
}
li {
color: blueviolet;
}
</style> -->
</head>
<body>
<header style="background-color: yellow">Cooking Tips</header>
<div>
<ol>
Hello
<li>Put the pot on the fire</li>
<li>Pour some water</li>
<li>Pour some rise</li>
</ol>
</div>
<div style="color: brown">
<h1>NETFLIX</h1>
<p>Welcome to NETFLIX style</p>
</div>
<div>
<a href="https://www.netflix.com"
>Click here to go to the official website</a
>
<a href="Other web.html">Check something out here</a><br /><br />
<a href="#">Back to the top</a>
</div>
<br /><img src="/Image/facebook logo.jpeg" alt="facebook" />
<form>
<label for="Surname">Surname</label>
<input
type="text"
name="name"
id=""
placeholder="Firstname Middlename Surname"
/>
<input type="email" name="email" id="" /><br /><br />
</form>
<label for="Gender">Gender</label>
<select>
<option value="">Male</option>
<option value="">Female</option>
</select>
<h1>God Is Good</h1>
<a href="mailto:peteraseeperi200@gmail.com">Email Me</a>
<b>I am static</b>
<footer>
<p class="footer">This is the footer</p>
<p class="footer">This is the footer</p>
</footer>
</body>
</html>