-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
94 lines (91 loc) · 3.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=devide-width, initial-scale=1.0">
<title>Atles de Conflictes</title>
<!--FONT AWESOME CDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<!--FONT-->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700&family=Tapestry&family=Zen+Maru+Gothic:wght@700&display=swap" rel="stylesheet">
<!--CUSTOM CSS-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Links (sit on top) -->
<div class="w3-top">
<nav class="nav-main">
<img src="imatges/logoweb.png" alt="Atles de Conflictes LOGO" class="nav-brand" />
<ul class="nav-menu">
<li>
<a href="index.html">Inici</a>
</li>
<li>
<a href="atles.html">Atles</a>
</li>
<li>
<a href="articles.html">Articles</a>
</li>
<li>
<a href="contact.html">Contacte</a>
</li>
</ul>
<ul class="nav-menu-right">
<li>
<a href="#">
<i class="fas fa-search"></i>
</a>
</li>
</ul>
</nav>
<!-- Form 4 contact -->
<form action="/action_page.php">
<div class="form" style="max-width:1200px;margin-top:25px">
<h2> Formulari de contacte</h2>
<p>Soc?</p>
<form action="/action_page.php">
<input type="radio" id="Empresa" name="soc?" value="Empresa">
<label for="empresa">Empresa</label>
<br>
<input type="radio" id="Particular" name="soc?" value="Particular">
<label for="Particular">Particular</label>
<br> <br>
<label for="fname">Nom:</label><br>
<input type="text" id="fname" name="fname" value="-"><br>
<label for="lname">Cognom:</label><br>
<input type="text" id="lname" name="lname" value="-"><br>
<label for="lname">E-mail:</label><br>
<input type="email" id="mail" name="mail" value="@"> <br>
<label for="lname">Telèfon:</label><br>
<input type="tel"><br><br>
<br>
<br>
<input type="button" onclick="alert('Gràcies per contactar!')" value="Enviar">
<input type="reset" value="Esborrar tot">
<br>
<br>
</div>
</form>
<section class="social">
<p>Follow</p>
<div class="links">
<a href="https://ca-es.facebook.com/" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/" target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://github.com/gdv21/pagina-web" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</section>
<footer class="registred">
<p> © Atles de conflictes |Tots els drets reservats |GPL-3.0 license</p>
</footer>
</div>
</body>
</html>