-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek1.html
More file actions
45 lines (41 loc) · 1.08 KB
/
Week1.html
File metadata and controls
45 lines (41 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML</title>
</head>
<body>
<h1><i>Welcome!</i></h1>
<br>
<p>Property No. 1 in Indonesia</p>
<table border = 1>
<th>Home</th>
<th>Awards</th>
<th>Door Prize</th>
<br>
<td>We Achieved No 1 in Property Award 2018</td>
<td>We Achieved No 3 in Property Award 2019</td>
<td>Grand Livina for first Prize!</td>
<table>
<tr>We Achieved No 1 in Property Award 2018</tr>
<tr>We Achieved No 3 in Property Award 2019</tr>
</table>
</table>
<br>
<h2><b>Join Us!</b></h2>
<br>
<h3>Fill The Form Below!</h3>
<form>
<p>
Username :
<input type="text" name="Username" placeholder="Masukkan nama anda">
</p>
<p>
Password :
<input type="password" >
</p>
<input type="Submit" name= "Login" value="Login">
</form>
</body>
</html>