-
Notifications
You must be signed in to change notification settings - Fork 2
/
news.html
124 lines (117 loc) · 4.37 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Covid-19 News</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-icon" />
<title>Covid-19 News</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/overlayscrollbars/1.9.1/css/OverlayScrollbars.min.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" />
<!-- Bulma Version 0.8.x-->
<link rel="stylesheet" href="https://unpkg.com/bulma@0.8.0/css/bulma.min.css" />
<link rel="stylesheet" href="https://unpkg.com/bulma-modal-fx/dist/css/modal-fx.min.css" />
<!--CSS file Link-->
<!-- <link rel="stylesheet" type="text/css" href="./sam's/style.css" /> -->
<link rel="stylesheet" href="./Remi/news.css">
</head>
<body>
<!--NavBar-->
<section class="hero is-dark is-fullheight">
<div class="hero-head">
<nav class="navbar">
<div id="navbar-section" class="container">
<div class="navbar-brand">
<a class="navbar-item has-text-white is-size-4" href="index.html">
<h1>COVID-19 TRACKER</h1>
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<span class="navbar-item">
<a class="button is-white is-outlined" href="index.html">
<span class="icon">
<i class="fa fa-home"></i>
</span>
<span>Home</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="resources.html">
<span class="icon">
<i class="fa fa-superpowers"></i>
</span>
<span>Resources</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="news.html" target="_blank">
<span class="icon">
<i class="fa fa-book"></i>
</span>
<span>COVID News</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="covidStats.html">
<span class="icon">
<i class="fa fa-book"></i>
</span>
<span>COVID Stats</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="login.html">
<span class="icon">
<i class="fa fa-key"></i>
</span>
<span>Employee Data</span>
</a>
</span>
</div>
</div>
</div>
</nav>
</div>
<br>
<br>
<!-- News Copy-->
<div class="container">
<h1 class="title is-1">Covid-19 News</h1>
</div>
<br>
<section class="section">
<div class="container">
<h2 class="subtitle">
As we all navigate these uncharted times during the COVID-19 epidemic, Screening Tracker is committed to
updating the
community on the latest news in your region, the nation and globally. We believe an educated and informed
public is a healthier public. Please check our covid-stats and resources pages for more useful information.
</h2>
</div>
<br>
<br>
<br>
<!-- Search Section -->
<div class="select">
<select id="selectID">
<option id="dropdownEl" >Select Catagory</option>
</select>
</div>
<!-- Cards Section -->
<div class="section" id="card"></div>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"
integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script>
<script src="employee_survey/burgerBulma.js"></script>
<script src="./Remi/news.js"></script>
</body>
</html>