-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.html
168 lines (154 loc) · 6.82 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<style>
nav {
text-align: center;
padding: 10px 0;
}
nav ul{
list-style: none;
margin: 0 2px;
padding: 0;
}
nav li {
display: inline-block;
padding: 10px 10px;
}
nav a {
font-weight: normal;
padding: 20px 5px;
font-size: 1.2em;
}
.navbar-text {
position: left;
left: 0;
text-align: center;
margin: auto;
font-weight: bold;
font-color: #765D69;
}
.carousel-inner{
height: 70%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
height: 100px;
width: 100px;
outline: black;
background-size: 100%, 100%;
border-radius: 50%;
border: 1px solid black;
background-image: none;
}
.dropdown:hover .dropdown-menu {display: block;}
</style>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- google font API -->
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Libre+Baskerville&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<title>Home Page</title>
</head>
<body style="font-family: 'Josefin Sans', sans-serif;">
<!-- nav bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="homepage.html">
<img src="website-img/teacup-icon.png" alt="That's The Tea" height="75">
</a>
<h1 class="navbar-text" style="font-family: 'Dancing Script', cursive; color:#765D69">That's The Tea</h1>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="homepage.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="AboutUs.html">About Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="social-issues.html">
Social Issues
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="blm.html">Black Lives Matter</a>
<a class="dropdown-item" href="suicide.html">Suicide Prevention</a>
<a class="dropdown-item" href="identities.html">LGBTQ+</a>
<a class="dropdown-item" href="anti-racism.html">Anti-Racism</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="OrgPage.html">Organizations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="newsletter.html">Newsletter</a>
</li>
</ul>
</div>
</nav>
<br>
<!-- body information -->
<div class="container" style="text-align: center; width: 800px">
<h1 style="font-size: 4em;">What's The Tea?</h1>
<p>Equality. Compassion. Sympathy. Self-Love. Self-Expression. Justice. Peace. Happiness.</p>
<p style="font-size: 1.3em;">That's The Tea.</p>
<p><em>"Spilling the Tea"</em> is a phrase that means sharing gossip or drama about a topic or situation. Similarly, this site spills the tea about the most prominent social issues going on in the world today. Because that is what we <em>should</em> be talking about.</p>
</div>
<div class="row">
<div class="col">
<div class="container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="website-img/BLM-banner.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="website-img/penguin-love.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="website-img/lgbtq-colorful.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="website-img/crowd-people.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev" style="color:black">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="col">
<br>
<br>
<p><strong>That's The Tea</strong> is a platform built to encourage college students to learn and talk about important social issues. The site includes the latest news on issues such as <a href="blm.html" style="color:#b87455">The Black Lives Matter Campaign</a>, <a href="suicide.html" style="color:#edb879">Suicide Prevention</a>, <a href="identities.html" style="color:#b87455">LGBTQ+ Inclusion</a>, and <a href="anti-racism.html" style="color:#edb879">Anti-Racism and Equality</a> efforts today. Along with providing resources to increase awareness, get involved, or get help, That's The Tea provides a safe area for individuals to discuss and ask questions about what is going on in the world through a monitored forum space for each individual <a href="social-issues.html" style="color:#b87455">social issue.</a></p>
</div>
</div>
<br>
<div class="container" style="text-align: center; width: 800px">
<p><strong>Wanna get involved?</strong> Visit our <a href="OrgPage.html" style="color:#edb879">organizations page</a> to see a list of social impact organizations at the university you attend. See how you can get involved now!</p>
</div>
<br>
</body>
</html>