-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (68 loc) · 2.87 KB
/
contact.html
File metadata and controls
72 lines (68 loc) · 2.87 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse" >
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img src="https://gomycode.tn/images/section2GMCLogo.png" style="width:50px;height:50px;"></a>
</div>
<ul class="nav navbar-nav" id="ulNav">
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</nav>
<center>
<div class="container-fluid">
<h1>contact</h1>
<form id="contactForm">
<br>
<label>name</label>
<br>
<input type="text" id="name" name="name" placeholder="john droe">
<br>
<label>track</label>
<br>
<select>
<option>WEB</option>
<option>IA</option>
<option>Game</option>
</select>
<br>
<label>Email Adress</label>
<br>
<input type= "Email" id="email" name="email" >
<br>
<label>Phone Number</label>
<br>
<input type = "Phone" id="phone" name="phone">
<br>
<button>submit</button>
<input type="submit" value"Submit" id="submitButton">
<button>Submit</button>
</form>
<!--
<form id="contactForm">
<input type="text" id="name" name="name">
<input type="email" id="email" name="email">
<input type="password" id="password" name="password">
<textarea cols="50" rows="50" id="message"></textarea>
<input type="submit" value="Submit" id="submitButton">
</form>
-->
</center>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/7.6.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.6.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.6.2/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.6.2/firebase-analytics.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</html>