-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (62 loc) · 2.79 KB
/
index.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
<!DOCTYPE html>
<html lang="pl">
<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">
<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=Grape+Nuts&family=Headland+One&family=Montserrat:ital,wght@0,400;0,500;1,400;1,500&family=Trocchi&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/0076359c68.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/main.css">
<title>Wedding-Fairy</title>
</head>
<body>
<div class="top"><img class="logo" src="./img/small-logo.png"
alt="logo wedding-fairy, black sign on pink background with a weeding rings, one with diamond in the title">
</div>
<div class="main-info">
<h1>Organizacja ślubów i wesel </h1>
<h2><em>Agnieszka Treder</em></h2>
</div>
<div class="icons">
<a href="https://www.instagram.com/_wedding_fairy/" target="_blank">
<i class="fa-brands fa-instagram" alt="logo of instagram "></i>
</a>
<a href="https://www.facebook.com/wedding.fairy1" target="_blank">
<i class="fa-brands fa-facebook-f" alt="small f, logo of facebook"></i>
</a>
<a href="tel:+48500709206" target="_blank">
<i class="fa-solid fa-mobile-screen" alt="mobile-phone image"></i>
</a>
</div>
<div class="contactArror">
<h3>Skontaktuj się ze mną :</h3>
<i class="fa-solid fa-envelope mail" alt="envelope, e-mail"></i>
</div>
<div class="contact-form">
<form class="form">
<label for="fname">Imię i nazwisko: </label>
<input type="text" id="fname" name="firstname" placeholder="Twoje imię i nazwisko..">
<label for="email">E-mail: </label>
<input type="email" id="e-mail" name="e-mail" placeholder="E-mail...">
<label for="phone">Telefon kontaktowy: </label>
<input type="phone" id="phone" name="phone" placeholder="Telefon kontaktowy...">
<label for="subject">Temat: </label>
<textarea id="subject" name="subject" placeholder="W czym mogę Ci pomóc..." style="height:200px"></textarea>
<div class="btn">
<input class="send" type="button" value="Wyślij">
<input class="close" type="button" value="Zamknij">
</div>
</form>
</div>
<div class="shadow"></div>
<div class="msg">
<p>Wiadomość została wysłana, dziękuję</p>
<button class="closeMsg">Zamknij</button>
</div>
<script src="./script.js"></script>
</body>
</html>