-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
178 lines (159 loc) · 5.09 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<!--
Striped by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>A Survival Guide to being a Woman on the Internet</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<meta name="description" content="Research Study on Online Gender-based Violence" />
<meta
name="keywords"
content="africa, gender-based violence, agency, pollicy, civic, tech, uganda,civic-tech"
/>
<!-- Bootstrap CSS CDN -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Font Awesome JS -->
<script
defer
src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js"
integrity="sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ"
crossorigin="anonymous"
></script>
<script
defer
src="https://use.fontawesome.com/releases/v5.0.13/js/fontawesome.js"
integrity="sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY"
crossorigin="anonymous"
></script>
<!-- BOT UI CDN -->
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/botui.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="jumbotron.css" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/botui-theme-default.css"
/>
</head>
<body class="is-preload">
<!-- Sidebar -->
<div id="sidebar" class="sidebar">
<!-- Logo -->
<div class="site-header__logo" role="banner">
<a
class="site-header__logo-link"
href="index.html"
rel="home"
title="An Interactive Chatbot"
>
<img src="./images/Logo1.png" alt="A Survival Guide to being a Woman on the Internet" />
</a>
</div>
<h1 id="logo"><a href="index.html"></a></h1>
<div class="fixedNav">
<!-- Nav -->
<nav id="nav">
<ul>
<li class="current">
<a href="index.html"> HOME</a>
</li>
<li class="menus">
<a href="report.html">FULL REPORT</a>
</li>
<li class="menus">
<a href="legal.html"
>LEGAL ANALYSIS</a
>
</li>
<li class="menus">
<a href="data.html">DATA SET</a>
</li>
<li class="menus">
<a href="contact.html"
>CONTACT</a
>
</li>
<!-- Logo -->
<li>
<a href="https://pollicy.org">
<img src="./images/Pollicy-logo-01.png" alt="Pollicy" style="width:200px;height:200px;margin-left:-20px;margin-top:100px;">
</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- Content -->
<div id="content">
<!-- Page header -->
<section class="page-header" style="background-color: #ffb742;">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 col-lg-8">
<img src="./images/top_1.png" />
</div>
<div class="col-12 col-md-6 col-lg-4">
<h2 class="page-header__title">
<h1>Alternate Realities, Alternate Internets</h1>
<h4>
Feminist Research for a Feminist Internet
</h4>
</h2>
</div>
</div>
</div>
</section>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=submit] {
background-color: #F89624;
color: white;
padding: 12px 20px;
margin-top: 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #e4512c;
}
label {
padding-top: 20px;
}
</style>
<div class="container">
<form action="action_page.php">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name">
<label for="email">Email Address</label>
<input type="text" id="email" name="email" placeholder="Your email address">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" placeholder="Your subject">
</select>
<label for="body">Your Message</label>
<textarea id="body" name="body" placeholder="Write something" style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</article>
</div>
<!-- Footer -->
</div>
</body>
</html>