-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontak.html
63 lines (63 loc) · 2.13 KB
/
kontak.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontak</title>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="kontak.css">
</head>
<body>
<header>
<nav class="wrapper">
<div class="brand">
<li><img src="image/logor.jpg" alt=""></li>
<div class="firstname">Orang</div>
<div class="lastname">Posting</div>
</div>
<ul class="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="profil.html">Profil</a></li>
<li><a href="#" class="active">Kontak</a></li>
</ul>
<div class="navbar-extra">
<a href="#" id="search"><i data-feather="search"></i></a>
<a href="#" id="menu"><i data-feather="menu"></i></a>
</div>
</nav>
</header>
<section>
<div class="awrapper">
<form id="contactForm">
<h2>Contact Us</h2>
<div class="input-field">
<input type="text" id="name" required>
<label for="name">Enter your Name</label>
</div>
<div class="input-field">
<input type="email" id="email" required>
<label for="email">Enter your Email</label>
</div>
<div class="input-field">
<input type="text" id="subject" required>
<label for="subject">Enter your Subject</label>
</div>
<div class="input-field">
<textarea id="message" class="message" required></textarea>
<label for="message">Enter your Message</label>
</div>
<button type="button" id="email-button">Send Message</button>
</form>
</div>
</section>
<footer class="footer">
<p>© <b>2024 Azhar49 x Harrys752. All rights reserved.</b></p>
</footer>
<script>
feather.replace();
</script>
<script src="kontak.js"></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
</body>
</html>