-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIssueDisplay.html
More file actions
56 lines (50 loc) · 1.75 KB
/
IssueDisplay.html
File metadata and controls
56 lines (50 loc) · 1.75 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
<!-- my idea is that we can have problem bubbles that people can click on which then leads then to more specific, related smaller bubbles.-->
<html>
<meta charset="utf-8">
<title>SOLVE | Solve community problems through collaboration</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/slick.css"/>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" src="issues.css">
<style>
button{
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 50px;
}
#heal{
background-color:#4CAF50;
}
#soc{
background-color:#FFC0CB;
}
#env{
background-color:rgb(200,0,200);
}
#add{
background-color:rgb(20,100,200);
}
body{margin-left: 20%;}
</style>
<h1>Issue Topics</h1>
<form method="get" action="https://we-hack-too-shan3011.c9users.io/social.html">
<button type="submit"id="soc">Social</button>
</form>
<form method="get" action="https://we-hack-too-shan3011.c9users.io/healt.html" >
<button id="heal" type="submit">Health</button>
</form>
<form method="get" action="https://we-hack-too-shan3011.c9users.io/enviromental.html">
<button type="submit" id="env">Environmental</button>
</form>
<form method="get" action="https://we-hack-too-shan3011.c9users.io/addnew.html">
<button type="submit" id="add">Add an Issue Topic</button>
</form>
<a href="https://we-hack-too-shan3011.c9users.io/index.php."><button>goback to index page</button></a>
</html>