-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-mas-ulul.html
59 lines (55 loc) · 1.8 KB
/
index-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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Belajar HTML</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body{
margin:20px 100px 20px 100px;
padding:10px 40px;
/* background-color: #275b95; */
border: 1px dashed #275b95;
}
</style>
</head>
<body>
<!-- Navbar atau menu -->
<div style="background-color: orange;">
<center>
<a href="index.html" style="color: red;"><b>Home</b></a> |
<a href="profile.html">Profile</a> |
<a href="#">News</a> |
<a href="#">Contact</a>
</center>
</div>
<br>
<!-- Foto Banner -->
<div style="background-color: yellow;">
<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>
<center>
<h4>Ini Halaman Home</h4>
</center>
<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>