-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
56 lines (51 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/contact.css">
</head>
<body >
<!-- Navbar Section -->
<div class="navbar">
<div class="flower"><img src="res/logo-GMC-white.png" alt="My_Plan_B" width="50" height="50"></div>
<div class="items">
<div class="items"> <a href="index.html">HOME </a></div>
<div class="items"><a href="Courses.html">COURSES</a></div>
<div class="items"><a href="Contact.html">CONTACT</a> </div>
</div>
</div>
<!-- Main Section -->
<div class="main">
<div class="cover">
<h1 class="heading">CONTACT</h1>
</div>
<form>
<div class="form-group"><label>Name</label><br>
<input type="text" placeholder="Your Name"></div><br>
<div class="form-group"><label>Track</label><br>
<select>
<option>Web</option>
<option>Game</option>
<option>AI</option>
</select>
</div><br>
<div class="form-group"><label>Email Adress</label><br>
<input type="url" placeholder="Name@example.com"></div><br>
<div class="form-group"><label>Phone Number</label><br>
<input type="text" placeholder="Your Phone Number"></div><br><br>
<div class="button">
<button class="btn btn-primary" type="submit" style="margin-left:250px;">Submit</button>
</div>
</form>
</div>
<!-- Footer Section -->
<br><br>
<div class="footer"><h4>GoMyCode Hackerspace, Immeuble NEO,ème étage,</h4>
<h4>Rue du lac lochness, Berges du Lac1,</h4><h4> 00216 31 314 570 ,</h4>
<h4> @gomycode.com</h4></div>
</body>
</html>