-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
93 lines (82 loc) · 2.75 KB
/
Copy pathHome.html
File metadata and controls
93 lines (82 loc) · 2.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tutorial services</title>
</head>
<body>
<nav class="Navigation">
<a href="Contents" class="nav-link">Home</a>
<a href="Footer" class="nav-link">About</a>
<a href="Footer" class="nav-link">Contacts</a>
<a href="login.html" class="nav-link">Login</a>
</nav>
<div class="Contents">
<hr>
<h1>Welcome to our Home page!</h1>
<hr>
<h3>We offer tutorial services on different Information technology roles now</h3>
<img src="img/pic1.png" alt="Studying">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Neque, voluptatibus excepturi maiores exercitationem at qui, expedita dolore nulla ullam laboriosam possimus architecto aperiam sit commodi cumque repellat dolores quo quos.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias praesentium sed repellat magnam repudiandae est aperiam ipsum quos? Fugiat dolore fuga inventore odit incidunt voluptatem autem odio! Nisi, mollitia iste!</p>
</div>
<hr>
<div class="Tutorials">
<table>
<caption><h2>Tutorials we offer</h2></caption>
<tr>
<th>Tutorial</th>
<th>Completion time</th>
<th>Cost price</th>
</tr>
<td>IT fundermentals</td>
<td>3 weeks</td>
<td>R750</td>
<tr>
<td>Operating systems</td>
<td>8 weeks</td>
<td>R1500</td>
</tr>
<tr>
<td>Networks</td>
<td>8 weeks</td>
<td>R2500</td>
</tr>
<td>Web development</td>
<td>6 months</td>
<td>R5000</td>
</tr>
</table>
</div>
<hr>
<div class="BuyTutorials">
<h2>Buy Tutorials</h2>
<hr>
<div>
<h4>IT Fundermental</h4>
<button>Buy Now</button>
</div>
<div>
<h4>Operating system</h4>
<button>Buy Now</button>
</div>
<div>
<h4>Networks</h4>
<button>Buy Now</button>
</div>
<div>
<h4>Web development</h4>
<button>Buy Now</button>
</div>
<hr>
</div>
<footer>
<P>Contact us on: <a href="#">060-612-8430</a></P>
<p>Send mail to: <a href="mailto:phathu.mutamba02@gmail.com">phathu.mutamba02@gmail.com</a></p>
<h5>Leave us with a message:</h5>
<textarea></textarea>
<input type="submit">
</footer>
</body>
</html>