-
Notifications
You must be signed in to change notification settings - Fork 7
/
contact.html
89 lines (53 loc) · 3.72 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
<!doctype html>
<html lang="en">
<script src="include.js"></script>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../../../favicon.ico">
<title>TC18 main site</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="dist/css/custom.css">
</head>
<body>
<div id="headerSite"></div>
<nav contentMenu="menu.html" id="navMenu" class=" navbar blurry navbar-expand-md navbar-dark navbar-dark mb-4 sticky-top"> </nav>
<script>includeHTML("contentMenu");</script>
<div id="site_content" class=" ml-0 mr-0">
<div class="row ml-3 mr-1">
<div class="col-12 text-justify " >
<div id="site_content">
<div id="content">
<h2>Contact</h2>
Simply send a mail to to <a href="mailto:[email protected]">[email protected]</a>
<!--
<form name="mail" action="mailto:[email protected]?subject=Contact from TC18 website" method="POST" enctype="text/plain" target="_blank" >
<div class="row">
<div class="form-group col-md-4">
<label class= "mt-2" for="nameInput">Name :</label>
<input type="text" class="form-control mb-2" id="nameInput" name="name" placeholder="Your name">
<label for="exampleFormControlInput1">Email address: </label>
<input type="email" class="form-control" id="exampleFormControlInput1" name="email" placeholder="[email protected]">
</div>
<div class="form-group mx-auto col-md-12">
<textarea class="form-control" id="exampleFormControlTextarea1" name ="comment" rows="5"> .... </textarea>
<button type="submit" class="btn btn-primary mt-2" value="Send">Send</button>
<button type="reset" class="btn btn-secondary mt-2" value="Send">Reset</button>
</div>
</form>-->
</div>
</div>
<div id="footerSite"></div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="header.js"></script>
<script src="footer.js"></script>
</div>
</body>
</html>