-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile-mas-ulul.html
72 lines (69 loc) · 2.11 KB
/
profile-mas-ulul.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Belajar HTML - Profile</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body>
<!-- Navbar atau menu -->
<div>
<center>
<a href="index.html">Home</a> |
<a href="profile.html" style="color: red;"><b>Profile</b></a> |
<a href="#">News</a> |
<a href="#">Contact</a>
</center>
</div>
<br>
<!-- Foto Banner -->
<div>
<center>
<img src="http://qoryatussalam.com/uploads/system/logo/logo-light.png"
width="200px" height="200px">
<h1>Santri Pro</h1>
</center>
</div>
<p>Ini deskripsi singkat</p>
<hr>
<p>Ini deskripsi singkat</p>
<table border="1" style="width: 100%;">
<tr>
<td colspan="2"><b>Nama</b></td>
</tr>
<tr>
<td><b>Ulul</b></td>
<td>08xxxxxx</td>
</tr>
</table>
<a href="hhtps://google.com" target="_self">Klik Link Ini</a> -
<a href="hhtps://google.com" target="_blank">Klik Link Ini</a>
<br>
<ol type="A">
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
<li>List 4</li>
</ol>
<ul type="square">
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
<li>List 4</li>
</ul>
<center>
<h3>Form Kontak</h3>
<form action="#" method="">
<input type="text" name="" value="" readonly placeholder="input nama disini ya"><br>
<input type="email" name="" value="" required placeholder="input email disini ya"><br>
<input type="password" name="" value="" required placeholder="input password disini ya"> <br>
<input type="number" name="" value="" min="111111111" max="999999999999" placeholder="input telp disini ya">
<br><button type="submit">Submit</button>
</form>
</center>
<br><br>
<hr>
<footer><center>© Pondok Pesantren Qoryatussalam</center></footer>
</body>
</html>