This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
113 lines (109 loc) · 4.08 KB
/
contact.html
File metadata and controls
113 lines (109 loc) · 4.08 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
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Members | PUP Programming Guild</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Abel|Lato:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="vendor/jquery-ui-1.12.1.custom/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="components/calendar/calendar.css">
<link rel="stylesheet" type="text/css" href="components/form/form.css">
<link rel="stylesheet" type="text/css" href="components/navbar/navbar.css">
<link rel="stylesheet" type="text/css" href="components/section/section.css">
<link rel="stylesheet" type="text/css" href="components/footer/footer.css">
<link rel="stylesheet" type="text/css" href="components/events-list/events-list.css">
<style>
body {
font-family: Lato, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: Abel, sans-serif;
}
</style>
</head>
<body>
<nav class="page-navbar navbar navbar-default navbar-static-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">PUP Programming Guild</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="events.html">Events</a></li>
<li><a href="members.html">Members</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<section class="page-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-push-2 col-md-6 col-md-push-3">
<form class="page-form" method="post">
<h1>Contact</h1>
<div class="form-group">
<label for="footer/contact/email">Your email address</label>
<input type="email" id="footer/contact/email" required
placeholder="Your email address" class="form-control">
PUP Programming Guild will respond to this address.
</div>
<div class="form-group">
<label for="footer/contact/subject">Subject</label>
<input type="text" id="footer/contact/subject" required
placeholder="Subject" class="form-control">
</div>
<div class="form-group">
<label for="footer/contact/message">Message</label>
<textarea class="textarea form-control" rows="5" required
id="footer/contact/message" placeholder="Message"></textarea>
You will be given a copy of this message.
</div>
<div class="form-group actions">
<button class="btn btn-primary" type="submit">Send</button>
</div>
</form>
</div>
</div>
</div>
</section>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6">
<h2>About</h2>
<ul class="list-unstyled">
<li><a href="#">What We Are</a></li>
<li><a href="#">What We Do</a></li>
<li><a href="#">What We Plan To Do</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6">
<h2>Links</h2>
<ul class="list-unstyled">
<li><a href="https://pup.edu.ph">PUP Official Web Site</a></li>
</ul>
</div>
</div>
<div class="text-muted">
<p>
PUP Programming Guild, 2016.
</p>
</div>
</div>
</footer>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="vendor/jquery-ui-1.12.1.custom/jquery-ui.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="components/calendar/calendar.js"></script>
</body>
</html>