-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (45 loc) · 1.75 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.3">
<link rel="stylesheet" href="styles.css">
<title> Contact Us </title>
</head>
<body>
<header class="header">
<a href="" class="logo">KAC233</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="registration.html">Registration</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main class="contact">
<div class="form">
<form action="https://info@ciu.edu.tr" method="post">
<div class="form-details">
<h2>We'd love to hear from you...💌😁</h2>
<input type="text" name="name" maxlength="27" class="fields" placeholder="Name" required />
<input type="email" name="email" class="fields" placeholder="Email" required />
<input type="text" name="Subject" class="fields" placeholder="Subject" required />
<textarea name="msg" cols="30" rows="5" class="fields" placeholder="Message" required></textarea>
<button type="submit" class="send-btn">Send</button>
</div>
</form>
</div>
<div class="msg">
<img src="img/msg.jpg" alt="Contact us photo" class="msg-photo">
</div>
</main>
<footer>
<p>
Copyrights ©<script>
document.write(new Date().getFullYear());
</script>, Project 233. All rights reserved. <br>
KUDZAI ABUBAKAR COLLINS
</p>
</footer>
</body>
</html>