-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
121 lines (76 loc) · 4.06 KB
/
form.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Lengua-Linguini - FORM</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<!--GOOGLE FONT-->
<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=Gideon+Roman&family=Karla:ital,wght@0,200;0,300;0,400;1,200;1,300&family=Lato:wght@300&display=swap" rel="stylesheet">
<!--Font Icons-->
<script src="https://kit.fontawesome.com/f30a166a26.js" crossorigin="anonymous"></script>
</head>
<body>
<a href="#contact">
<video class="h-100" style="width: 100%" playsinline autoplay muted loop>
<source src="assets/header1.mp4" type="video/mp4" />
</video>
</a>
<div class="topnav" id="myTopnav">
<a href="index.html" >Why</a>
<a href="index.html">About</a>
<a href="form.html" class="active">Contact</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
<section id="why">
<h3>You can choose on your own</h3>
<div class="projects grid">
<a href="#contact">
<img src="assets/star.png" alt="star">
<h3 class="why">Spanish</h3>
<p>Next courses starts on <br><br> 14 MAY <br> 07 AUGUST <br> 04 JULY</p> </a>
<a href="#contact">
<img src="assets/star.png" alt="star">
<h3>English</h3>
<p>Next courses starts on <br><br> 16 APRIL <br> 06 JUNE <br> 01 JULY</p>
</a>
<a href="#contact">
<img src="assets/star.png" alt="star">
<h3>Deutsch</h3>
<p>Next courses starts on <br><br> 16 OCTOBER <br> 06 NOVEMBER <br> 01 DECEMBER</p> </a>
</div>
</section>
<section id="contact" class="contact-form">
<h3>get in touch, and apply with our course</h3>
<p>you will remember this day as the one who changed your destiny</p>
<form action="confirmation.html" onsubmit="return validation();" >
<input type="text" placeholder="NAME" name="fname" id="fname">
<input type="text" placeholder="LAST-NAME" name="lname" id="lname">
<input type="email" placeholder="email adress bitte" name="email" id="email"><br>
<div class="form-flex" >
<input type="radio" name="lenguage" value="english" id="english">
<label for="english">English</label><br>
<input type="radio" name="lenguage" value="deutch" id="deutsch">
<label for="deutch">Deutch</label><br>
<input type="radio" name="lenguage" value="spanish"id="spanish" >
<label for="spanish">Spanish</label><br>
</div>
<textarea name="message" style="width:300px; height:200px;" placeholder="Please told us if you need further information" id="text"></textarea><br>
<button class="button" type="submit" value="Submit">Confirm</button>
</form>
</section>
<footer>
<div class="grid">
<p>Copyright 2022 <br>Julian Petrini Jäggli</p>
<ul class="social">
<li><a href="https://www.instagram.com/jpet.jpet" target="_blank"><i><img src="assets/instagram-brands.svg" alt="instagram"></i></a></li>
<li><a href="https://www.linkedin.com/in/julianpetriniiaggli" target="_blank"><i><img src="assets/linkedin-brands.svg" alt="linkedin"></i></a></li>
<li><a href="https://github.com/julianpetrini/" target="_blank"><i><img src="assets/github-brands.svg" alt="github"></i></a></li>
</ul>
</div>
</footer>
<script src='main.js'></script>
</body>