forked from NicolasPerl/techchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
executable file
·108 lines (68 loc) · 2.57 KB
/
contacts.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
<!-- Bootstrap Core CSS -->
<link href="/styles/bootstrap.min.css" rel="stylesheet" title="basic style" type="text/css" media="all">
<!-- Custom CSS -->
<link href="/styles/logo-nav.css" rel="stylesheet" title="basic style" type="text/css" media="all" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90907253-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Navigation -->
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<h4>The TechChat staff is pleased to bring you the most exciting and up-to-date news about modern technology. Each of us are eager to receive feedback or comments on the site so feel welcome to send us a message regarding the content or website design.</h4>
<p>Nicolas <br> Senior Developer</p>
<p>Hayden <br> Associate Developer</p>
<p>Avery <br> Associate Developer</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h4 style="margin-left: 15px;">Have a tip?</h4>
<form method="post" action="./comments.php">
<p>
<label>Name (optional):
<input name="name" type="text"/>
</label>
</p>
<p>
<label>Email (optional):
<input type="Email" name="email"/>
</label>
</p>
<p>
<label>Headline:
<input name="headline" type="text"/>
</label>
</p>
<p>
<label>Comment
<textarea name="comment" rows="10" cols="30" size="1000"></textarea>
</label>
</p>
<input type="submit" name="submit">
<input name="reset" type="reset">
</form>
</div>
<!-- /.container -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>