-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
123 lines (105 loc) · 5.24 KB
/
events.html
File metadata and controls
123 lines (105 loc) · 5.24 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
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<title>ScriptEd Hackathon SF BAY</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Your Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!-- Your CSS Linked Below-->
<link rel="stylesheet" href="/styles.css">
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Your Javascript Linked Below-->
<script src="/script.js" defer></script>
<style>
body {
background-image: url("https://png.pngtree.com/thumb_back/fw800/back_pic/04/48/50/00585a3568a0a7d.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
h1 {
font-family: 'Patua One', cursive;
text-align: center;
color:black;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Patua+One" rel="stylesheet">
</head>
<body>
<div id="navbar">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">The Game Of Dares</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="/index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/dares.html">Dares</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/lvl.html">Account</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 align="center">
Current Events
</h1>
</div>
</div>
<div class="row">
<div class="col-md">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="https://rcalendar.s3.amazonaws.com/facebook/1859257770979506" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Stand Up for Women’s Lives (Protest and Performance Art)</h5>
<p class="card-text">
"Anti-abortion groups will be gathering for the “International Gift of Life” walk at Foley Square on this Sunday, March 25th. These groups represent some of the most horrendous ideals held by our opponents in the fight for abortion access without apology..."
</p>
<a href="https://www.resistancecalendar.org/event/5ab1db48f161857049817972" class="btn btn-primary">Find Out More</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="https://rcalendar.s3.amazonaws.com/facebook/10156200965473256" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">How Do We Stop Gun Violence? Building Resistance from Tragedy</h5>
<p class="card-text">
"While the phenomenon of the lone gunman shooting dozens of people in public is a unique feature of our current moment, gruesome violence has been a central feature of U.S. society throughout its history..."
</p>
<br>
<br>
<a href="https://www.resistancecalendar.org/event/5ab1dccbf16185704981afee" class="btn btn-primary">Find Out More</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="https://rcalendar.s3.amazonaws.com/facebook/10156132960350930" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Marielle Franco, Presente!: Assassination of a Freedom Fighter</h5>
<p class="card-text">
"Marielle Franco, the Brazilian political powerhouse was assassinated on March 14th in Rio de Janeiro. Marielle was a radical anti-police brutality activist and a champion for many Black Brazilians..."
</p>
<a href="https://www.resistancecalendar.org/event/5ab5456ef161857049acecde" class="btn btn-primary">Find Out More</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>