forked from ITSchool-Web-Heroines/Proiect-HTML-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
108 lines (102 loc) · 4.23 KB
/
contact.html
File metadata and controls
108 lines (102 loc) · 4.23 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
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
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>THYNK TRAVEL</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@200&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="contact.css" />
</head>
<body>
<header>
<ul class="nav">
<li><a href="destinatii.html" class="menu-item">Destinații</a></li>
<li><a href="index.html" class="logo menu-item">THYNK TRAVEL</a></li>
<li><a href="contact.html" class="menu-item">Contact</a></li>
</ul>
<h1 class="page-title">Contact</h1>
<h2 class="page-subtitle">Subtitlu</h2>
</header>
<section class="section-form">
<div>
<form action="/" method="GET">
<section>
<h3 class="text-contact">Contactează-ne pentru mai multe detalii</h3>
<ul id="form-ul">
<li>
<input
type="text"
name="username"
id="user-name"
placeholder="Nume"
/>
</li>
<li>
<input
type="email"
name="useremail"
id="user-email"
placeholder="Email"
/>
</li>
<li>
<input
type="text"
name="subject"
id="subject"
placeholder="Subiect"
/>
</li>
<li>
<textarea
name="user-message"
id="usermessage"
rows="5"
placeholder="Mesaj"
></textarea>
</li>
</ul>
<div class="btn-form">
<button type="submit" class="btn-filled-form">
Trimite mesaj
</button>
</div>
</form>
</div>
<div id="map">
<img src="img/imag4.png" alt="map" />
</div>
</section>
<section class="pictures">
<a href="nusa-penida.html" style=" grid-area: span 1 / span 3;"><img src="img/nusa_penida3.jpg" alt="" ></a>
<a href="petra.html" style="grid-area: span 1 / span 1;"><img src="img/petra3.jpg" alt="" ></a>
<a href="lacul-sorapiss.html" style="grid-area: span 1 / span 2;"><img src="img/lacul_sorapiss.jpg" alt=""></a>
<a href="insula-siargao.html" style="grid-area: span 1 / span 2;"> <img src="img/insula_siargao1.jpg" alt="" ></a>
<a href="santorini.html" style="grid-area: span 1 / span 1;"><img src="img/santorini4.jpg" alt=""></a>
<a href="petra.html" style="grid-area: span 2 / span 1;"><img src="img/petra.jpg" alt=""></a>
<a href="mattehorn.html" style="grid-area: span 1 / span 1;"> <img src="img/mattehorn_2.webp" alt=""></a>
<a href="insula-siargao.html" style="grid-area: span 3 / span 2;"> <img src="img/insula_siargao3.jpg" alt=""></a>
<a href="mattehorn.html" style="grid-area: span 1 / span 2;"> <img src="img/mattehorn.jpg" alt=""></a>
<a href="nusa-penida.html" style="grid-area: span 1 / span 1;"><img src="img/nusa_penida.jpg" alt=""></a>
<a href="santorini.html" style="grid-area: span 1 / span 1;"><img src="img/santorini2.jpg" alt=""></a>
<a href="lacul-sorapiss.html" style="grid-area: span 2 / span 1;"><img src="img/lacul_sorapiss3.jpg" alt=""></a>
</section>
<footer>
<a href="https://www.instagram.com/">
<img src="icons/instagram.png" alt="instagram" class="icon"/>
</a>
<a href="https://facebook.com">
<img src="icons/facebook.png" alt="facebook" class="icon"/>
</a>
<a href="https://tiktok.com">
<img src="icons/titkok.png" alt="tiktok" class="icon"/>
</a>
</footer>
</body>
</html>