-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
57 lines (57 loc) · 1.89 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
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="./css/common.css" />
<link rel="stylesheet" type="text/css" href="./css/contact.css" />
<title>Daily Local News | Contact Us</title>
</head>
<body>
<header class="sticky-header">
<a class="header-logo" href="welcome.html">Daily Local News</a>
<nav class="header-nav">
<a class="header-nav-item" href="register.html" title="register"
>Register</a
>
<a class="header-nav-item" href="login.html" title="contact">Login</a>
</nav>
</header>
<main class="container">
<div class="row-layout">
<img src="assets/contact.jpg" class="display-image" />
<div class="col-layout contact-form">
<h1>Contact Us</h1>
<input
class="contact-form-input"
type="text"
placeholder="Your name..."
/>
<input
class="contact-form-input"
type="email"
placeholder="Your email..."
/>
<textarea
class="contact-form-text-area"
placeholder="Your message..."
></textarea>
<button class="contact-form-submit" onclick="submitFunction()">
Contact Us
</button>
</div>
</div>
</main>
<footer class="mobile-footer">
<p class="footer-tag">2023 Demet Çalışkan & Kaan Mert Koç.</p>
<nav class="footer-nav">
<a class="footer-nav-item" href="login.html" title="register">Login</a>
<a class="footer-nav-item" href="register.html" title="contact"
>Register</a
>
</nav>
</footer>
<script src="js/contact-auth.js"></script>
</body>
</html>