-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 3.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dshs magazine</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="stylePlus.css">
<link rel="stylesheet" href="stylePlus2.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div style="text-align: center; margin-bottom: 10px;">
<h1 style="margin-top: 10px; margin-bottom: 8px; margin-right:10px; font-family: 'Abril Fatface', cursive;">Dshs magazine</h1>
<ul class="nav justify-content-center" style="margin-bottom: 6px;">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</li>
</ul>
<nav class="navbar navbar-light" style="margin-top: 10px; text-align:center; margin:0 auto; margin-bottom: 10px; background-color: #0A174E; ">
<div class="container-fluid">
<form class="d-flex" style="margin:0 auto;">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-warning" type="submit" style="color:white;">Search</button>
</form>
</div>
</nav>
</div>
<div class="card goCenter" style="width: 18rem; background-color: #0A174E; border: 3px dotted #F5D042; box-shadow: black 3px 3px 3px; margin-bottom: 20px; margin-top: 15px;">
<!--<img src="..." class="card-img-top" alt="...">-->
<div class="card-body">
<h5 class="card-title" style="color: #F5D042; font-weight: bold;">Card title</h5>
<p class="card-text" style="color: #F5D042;">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-warning" style="font-weight: bold;">Check the article</a>
</div>
</div>
<div class="card goCenter" style="width: 18rem; background-color: #0A174E; border: 3px dotted #F5D042; box-shadow: black 3px 3px 3px; margin-bottom: 20px; margin-top: 10px;">
<!--<img src="..." class="card-img-top" alt="...">-->
<div class="card-body">
<h5 class="card-title" style="color: #F5D042; font-weight: bold;">Card title</h5>
<p class="card-text" style="color: #F5D042;">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-warning" style="font-weight: bold;">Check the article</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>