-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractise.html
57 lines (52 loc) · 1.4 KB
/
practise.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
<!DOCTYPE html>
<html lan="en">
<head>
<title>Welcome to my webpage.</title>
<meta charset="UTF-8">
<meta name="description" content="This is a beginners webpage.">
<style>
p {
color: greenyellow;
}
.highlight {
background-color: aliceblue;
}
#header {
font-size: 30px;
}
</style>
<!--External Stylesheet-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--This is a comment-->
<h1 id="header">Hello, world.</h1>
<p class="highlight">My first paragraph.</p>
<!--This is a link-->
<a href="https://academy.powerlearnprojectafrica.org/login">Click to get to power learn.</a>
<!--IMages-->
<img src="img.jpg" alt="This image shows code." width="500" height="500">
<!--Lists-->
<ol type="I">
<li>Item 1.</li>
<li>Item 2.</li>
</ol>
<ul type="square">
<li>Item 1.</li>
<li>Item 2.</li>
</ul>
<!--Forms-->
<form action="/location" method="GET/POST">
<label for="name">Name: </label>
<input type="text" id="name">
<br />
<label for="email">Email: </label>
<input type="email" id="email">
<br />
<label for="password">Password: </label>
<input type="password" id="password">
<br />
<button type="submit">submit</button>
</form>
</body>
</html>