-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguest.html
More file actions
52 lines (51 loc) · 1.87 KB
/
guest.html
File metadata and controls
52 lines (51 loc) · 1.87 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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>MDRH | Guest Book</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<header>
<img src="asset/profile-pict.png" class="profile-pict">
<h1>MDRH</h1>
<div class="contact-link">
<a href="https://www.instagram.com/m_daffarh/" target="_blank"><img src="https://twice.jype.com/Content/Pc/images/common/sns_instagram.png" alt=""></a>
<a href="https://www.facebook.com/daffa.rizmawan/" target="_blank"><img src="https://twice.jype.com/Content/Pc/images/common/sns_facebook.png" alt=""></a>
</div>
</header>
<div class="menu-wrapper">
<a href="index.php">Home</a>
<a href="profile.php">Profile</a>
<a href="gallery.php">Gallery</a>
<a href="guest.php"><b>Guest Book</b></a>
<a href="contact.php">Contact</a>
</div>
<div class="main-wrapper">
<div class="profile-wrapper" id="profile">
<h2>Muhammad Daffa Rizmawan Harahap</h2>
</div>
<div class="right-wrapper" id="about">
<h2 class="guest-header">Guest Book</h2>
<div class="form-wrapper">
<form method="POST" action="add.php">
<h4>Name</h4>
<input type="text" name="name" size="50" placeholder="Yeh Shuhua">
<h4>Email</h4>
<input type="email" name="email" placeholder="email@address.com">
<h4>Comment</h4>
<textarea name="comment" id="" cols="50" rows="10" placeholder="Leave a message..."></textarea><br>
<input type="submit" name="submit" value="Submit">
<input type="reset" name="reset" value="Reset">
</form>
<div class="comment-section">
<a href="dataTable.php" target="_blank"> See your comment here...</a>
</div>
</div>
</div>
</div>
<footer>
<p> Copyright © MDRH</p>
</footer>
</body>
</html>