-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (102 loc) · 2.37 KB
/
index.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
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
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>Halaman Pertamaku</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="head">
<figcaption>Wahyu.H'sWebpage</figcaption>
<img src="image/jo.jpg" title="picture" width="200" height="240">
<div class="header-content">
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#">Reflection</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</div>
</div>
<div class="body">
<div class="body-content">
<p>Hi, I am Myname and this is my first page. Lets be a fullstack developer with Hacktiv8.</p>
<p>This is my target list : </p>
<ol>
<li>Being fullstack developer</li>
<li>Create a wonderfull website</li>
</ol>
<p>He is my contact :</p>
<ul>
<li>Email : [email protected]</li>
<li>Phone : 085718009088</li>
</ul>
<table>
<p>My Daily Routine</p>
<thead>
<tr>
<th></th>
<th>Morning</th>
<th>Afternoon</th>
<th>Evening</th>
<th>Night</th>
<tr>
</thead>
<tbody>
<tr>
<th>Monday</td>
<td colspan="4" rowspan="7">Eat, Coding, & Sleep</td>
<tr>
<th>Tuesday</th>
</tr>
<tr>
<th>Wednesday</th>
</tr>
<tr>
<th>Thuesday</th>
</tr>
<tr>
<th>Friday</th>
</tr>
<tr>
<th>Saturday</th>
</tr>
</tr>
</tbody>
</table>
</div>
</div>
<!--Start Komentar-->
<div class="comment">
<fieldset>
<legend>Leave Your Comment Below</legend>
<form>
<fieldset>
<legend>Input Your Name</legend>
<label> First name </label><br>
<input type="text" name="firstname"><br>
<label>Last name </label><br>
<input type="text" name="lastname">
<br>
</fieldset>
<label>Gander : </label><br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br>
<label>Language spoken :</label><br>
<input type="checkbox" name="vehicle1" value="Indonesia">Bahasa Indonesia
<br>
<input type="checkbox" name="vehicle2" value="Inggris">English
<br>
<input type="checkbox" name="vehicle2" value="Lainnya">Other
<br>
<label>Bio <label><br>
<textarea name="message" rows="10" cols="30"></textarea>
<br>
<input type="submit">
</form>
</fieldset>
</div>
</body>
</html>