-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.html
49 lines (46 loc) · 1.37 KB
/
learn.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
<!DOCTYPE Html>
<head>
<title>My Website</title>
</head>
<body>
<h1>ABOUT ME (@NONNYb)</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Vel ratione quae, aut repellendus unde
debitis recusandae animi voluptate exercitationem maiores fugiat modi distinctio magni, sit
dignissimos, amet fuga dolorem. Fugiat!</p>
<img src= "captain-america.jpg">
<br>
<table border="5px">
<tr>
<th>WHAT I LIKE</th>
<th>WHAT I DONT LIKE</th>
</tr>
<tr>
<td>video game</td>
<td>lies</td>
</tr>
</table>
<h2>MY TOOLS</h2>
<ol>
<li>visual studio</li>
<LI>Playing games</LI>
</ol>
<ul>
<li>cloths</li>
<li>shoes</li>
</ul>
<h4>Subscribe to my blog</h4>
<form action="" method="post"
Email <input type="text" name="email">
<input type="button" value="subscribe"></form>
<h3>create an account</h3>
<form action="/form.php" method="post">
Username: <input type="text" name="username" required><br>
First name:<input type="text" name="first name" required><br>
<input type="button" value="Register">
</form>
<h4>Follow me everywhere</h4>
<ul>
<li><a href="https://facebook.com/nwosu.nonso1" target="_blank">Facebook</a></li>
</ul>
</body>
</html>