-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
64 lines (53 loc) · 2.62 KB
/
hello.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
58
59
60
61
62
63
64
<DOC html>
<html>
<head>
<title>this is the repository</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2>hello my counrty people.
i am not taking a huduma number unless i have clear understnding of its requirement</h2>
<p> this is teh paragraph. consider styling the paragraph
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse voluptas numquam tempore non enim dolore voluptatum, laudantium, dicta quae aut corrupti tempora veniam.
Illum tempore recusandae molestiae, consequatur enim tenetur! Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias in repellendus nemo? Iusto error velit, deleniti ducimus consequatur iure repellendus nisi maiores,
incidunt officiis aspernatur quam similique quidem. Odit, soluta.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse voluptas numquam tempore non enim dolore voluptatum, laudantium, dicta quae aut corrupti tempora veniam.
Illum tempore recusandae molestiae, consequatur enim tenetur! Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias in repellendus nemo? Iusto error velit, deleniti ducimus consequatur iure repellendus nisi maiores,
incidunt officiis aspernatur quam similique quidem. Odit, soluta.
</p>
<form>
<input type="text" placeholder="Fullname" name="name">
<button>
Submit!
</button>
</form>
<table>
<tr>
<th>this is the header</th>
<th>oranges</th>
<th>ugali</th>
<th>sukuma</th>
</tr>
<tr>
<td>importance of the fruits</td>
<td>oranges are the sweetest</td>
<td>ugali is the best</td>
<td> ka-sukuma is good with eggs and ugali</td>
</tr>
<tr>
<td>importance of the fruits</td>
<td>oranges are the sweetest</td>
<td>ugali is the best</td>
<td> ka-sukuma is good with eggs and ugali</td>
</tr>
<tr>
<td>importance of the fruits</td>
<td>oranges are the sweetest</td>
<td>ugali is the best</td>
<td> ka-sukuma is good with eggs and ugali</td>
</tr>
</table>
<img src="document.jpg" height="300px" width="300px">
</body>
</html>
</DOC>