-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (73 loc) · 2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Reach out to the costumer service to the community science museum">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/common.css">
<link rel="icon" href="images/favicon/favicon-32x32.png">
<script src="https://kit.fontawesome.com/8908c40066.js" crossorigin="anonymous"></script>
<title>TCSM Contact</title>
</head>
<body>
<header>
<input type="checkbox" id="burger">
<label for="burger" class="menu-icon"><i class="fa-solid fa-bars"></i></label>
<nav>
<a href="index.html">Home</a>
<a href="exhibitions.html">Exhibitions</a>
<a href="contributions.html">Contributions</a>
<a href="about.html">About</a>
<a href="contact.html" class="active">Contact</a>
</nav>
<h3 class="phone-title">TCSM Contact</h3>
<div class="search">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search" class="search-input" placeholder="Search...">
</div>
</header>
<main>
<div class="message">
<h2>Contact us</h2>
<div class="name">
<i class="fa-solid fa-user"></i>
<input type="text" placeholder="Enter your name">
</div>
<div class="email">
<i class="fa-solid fa-envelope"></i>
<input type="email" placeholder="Enter your e-mail">
</div>
<textarea placeholder="Write a message" maxlength="300"></textarea>
<button>Send message</button>
</div>
</main>
<footer id="c-footer">
<div class="about">
<h3>About us</h3>
<a href="about.html" class="phone-footer">About us</a>
<a href="exhibitions.html">Exhibitions</a>
<a href="contact.html">Reach out</a>
</div>
<div class="law">
<h3>Terms and policy</h3>
<a href="policy.html" class="phone-footer">Policy</a>
<a href="policy.html">Privacy Policy</a>
<a href="terms.html">Terms and Conditions</a>
</div>
<div class="terms">
<h3>Participate</h3>
<a href="terms.html" class="phone-footer">Terms and Conditions</a>
<a href="contributions.html">Contributions</a>
<a href="activities.html">Activities and Studies</a>
</div>
<div class="links">
<h3>Social media</h3>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
<img src="images/used-images/tcsm-logo.png" alt="logo" class="footer-logo">
</footer>
</body>
</html>