-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfirsttask.html
More file actions
54 lines (42 loc) · 918 Bytes
/
firsttask.html
File metadata and controls
54 lines (42 loc) · 918 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Task</title>
<link rel="stylesheet" type="text/css" href="FirstTask.css">
</head>
<body>
<div id='welcome'>
<h2>Welcome to my page</h2>
<div id="discover">Discover</div>
</div>
<div class="box">
<div id="left-box">
</div>
<div id="center-box">
</div>
<div id="right-box">
</div>
</div>
<table>
<thead>
<td>Name</td>
<td>Email Address</td>
<td>Phone Number</td>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>johndoe@gmail.com</td>
<td>08141655222</td>
</tr>
</tbody>
</table>
<div id="subscribe">
<div id='Email'>Email Address</div>
<div id='click'>subscribe</button>
</div>
<footer>All right reserved. 2020</footer>
</body>
</html>