-
Notifications
You must be signed in to change notification settings - Fork 0
/
indyx.html
119 lines (97 loc) · 4.24 KB
/
indyx.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Character encoding, device scalability-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--Strapboot Links-->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!--Custom CSS-->
<link rel="stylesheet" href="stylesheet.css" />
<!--Additional CSS-->
<title>Lorem Ipsum dolor sit a met News</title>
</head>
<!--Space at the top of the page.-->
<!--Page name, slogan, some words of reference.-->
<header class="jumbotron jumbotron-fluid m-0">
<div class="container-fluid">
<div class="row">
<div class="align-self-center">
<h1>Lorem Ipsum Dolor News</h1>
<h4 class="text-justify"> Your source for consectetur adipisci elit.</h4> <br>
<h6 class="text-justify">Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus.</h6>
</div>
</div>
</div>
<!--Gonna be the weather thing FIX FIX FIX FIX FIX FIX FIX--
<div class=".d-none .d-sm-block">
<div class="container-fluid float-right">
<div class="col-sm-4">
<div class="card">
<h3 class="card-header bg-primary text-white">Top Stories This Week</h3>
<div class="card-body">
<dl class="row">
<dt class="col-6">lorem ipsum</dt>
</dl>
</div>
</div>
</div>
</div>
</div>-->
</header>
<!--Top Navigation Bar-->
<nav class="navbar-expand-sm">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#NavBar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="NavBar">
<ul class="topNav">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#localnews">Local News</a></li>
<li><a href="#statenews">State News</a></li>
<!--<li><a href="nationalnews">National News</a></li>-->
<!--<li><a href="#worldnews">World News</a></li>-->
<li><a href="#edu">Education</a></li>
<li><a href="#sports">Sports</a></li>
<li><a href="#ent">Entertainment</a></li>
<!--<li><a href="#tech">Technology</a></li>-->
<!--<li><a href="#art">art</a></li>-->
<li><a href="Other.html">Other</a></li>
<!--<li><a href="#all">All News</a></li>-->
<li><a href="#about">About</a></li>
<li id="alignright">
<div class="input-group">
<input type="search" class="form-control" placeholder="Search" aria-label="Search"
aria-describedby="search-addon" />
<button type="button" class="btn btn-outline-primary">Search</button>
</div>
</li>
</ul>
</div>
</nav>
<body>
<div class="container-fluid">
<h2 class="topStoriesHeader" style="margin-top: 2%;">
<!--<span class="border border-primary rounded"></span>-->
Top Stories This Week
</h2>
<div class="card" style="width: 22rem; margin-top: 2%;">
<!--<img class="card-img-top" src="..." alt="Card image cap">-->
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's
content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<!--Scripts required to properly use Bootstrap.-->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!--Closing tags.-->
</body>
</html>