-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (73 loc) · 2.93 KB
/
Copy pathcontact.html
File metadata and controls
83 lines (73 loc) · 2.93 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
<!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" />
<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=Chau+Philomene+One&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./contact-style.css">
<script src="https://kit.fontawesome.com/25f954a303.js" crossorigin="anonymous"></script>
<title>HYPURE | Contact Us</title>
</head>
<body>
<div class="contact-page"></div>
<a href="./index.html">
<div class="logo grow"></div>
</a>
<div class="container-form-phone">
<div class="container-form">
<form action="https://formspree.io/f/xbjwbaez" method="POST" id="login">
<fieldset>
<legend>Leave a message, but please keep it short, ok?</legend>
<div>
<label for="name">Name
<input id="name" type="text" name="name" size="30" placeholder="Type your name" required />
</label>
</div>
<div>
<label for="company">Company name
<input id="company" type="text" name="company" size="30" placeholder="Company name (optional)" />
</label>
</div>
<div>
<label for="email">E-Mail
<input id="email" type="text" name="email" size="30" placeholder="We need your email adress" required />
</label>
</div>
<div>
<label for="purpose">What do you want from us?</label>
<select id="purpose" name="purpose">
<option value="service">Your service</option>
<option value="job">Job</option>
<option value="else">I have something else to tell you</option>
</select>
</div>
<div>
<label for="date">Wanna see us face-to-face?</label><br />
<input type="date" />
<input type="time" name="time" id="time" value="09:00" />
</div>
<div>
<label for="subject">Message</label>
<textarea id="subject" name="subject" placeholder="Write something right here..."
style="height: 130px"></textarea>
</div>
<div class="container-file">
<input type="file" id="file" name="myfile" multiple />
<label for="file"> <i class="fa-solid fa-folder-open"></i> Select Files</label>
</div>
<div>
<button type="submit" id="button">Send</button>
</div>
</fieldset>
</form>
</div>
<div class="container-phone">
<p>Who has the balls to call us?</p>
<p>+65-955-502-34</p>
</div>
</div>
</body>
</html>