-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
77 lines (59 loc) · 2.12 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title>Stop Sexual Violence</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Jacques+Francois&family=Jacques+Francois+Shadow&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>
<nav class="all-nav-class-a">
<ul>
<li><a href="tel:+18006564673">Need Immediate Help?</a></li>
<!--THIS IS THE PHONE NUMBER FOR THE SEXUAL VIOLENCE HOTLINE-->
</ul>
</nav>
<nav class="all-nav-class-b">
<ul>
<li><a href="resources.html">Resources </a></li>
<li><a href="home.html">Home </a></li>
<li><a href="about-us.html">About </a></li>
</ul>
</nav>
<main>
<div class="main-img-div-class">
<div class="main-img-h1-class">
<h1> Stop Sexual Violence</h1>
</div>
</div>
<div id="home-main-text-box-id">
<div class="home-main-box-content-class">
<p class="home-main-box-text-class">4 in 5 women experience sexual violence as a minor while 2 in 5 men
exprience
the same as a minor.</p>
</div>
<div class="home-main-box-content-class">
<p class="home-main-box-text-class">14% of people aged 18 and over have experienced sexual violence since they
were 15.</p>
</div>
<div class="home-main-box-content-class">
<p class="home-main-box-text-class">About 70% of all reported sexual assaults occur to children ages 17 and
under.</p>
</div>
</div>
<div id="home-factgen-div-id">
<button id="generateFactsButton">Learn About The Facts And Myths</button>
<h2 id="fact"></h2>
</div>
</main>
</body>
</html>