-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (81 loc) · 4.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- stylesheets / bootstrap -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/e0c9222410.js" crossorigin="anonymous"></script>
<title>Bliss</title>
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<img src="https://www.flaticon.com/svg/static/icons/svg/3158/3158969.svg" height="50" width="50" alt="home icon">
<a class="navbar-brand" href="/bliss" style="margin-left:15px;">Bliss</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="/bliss/good-news/good-news.html">Good News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/bliss/happy-tummy/happy-tummy.html">Happy Tummy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/bliss/mood-board/mood-board.html">Mood Board</a>
</li>
</ul>
<div class="my-2 my-lg-0 user-icon">
<i class="fas fa-angle-down"></i>
curious_kitty1
<img src="https://www.flaticon.com/svg/static/icons/svg/763/763713.svg" height="50" width="50" alt="user icon">
</div>
</div>
</nav>
<div class="container justify-content-center">
<h1 style="text-align: center;">What is Bliss?</h1>
<p>Bliss is a website that encourages users to take care of themselves and take a break from their stressful day-to-day lives.</p>
<p>In these unprecedented times, it seems like there's stress and bad news everywhere you look. That's why it's important now more than ever
to take a break and find things that promote wellness and make you happy!
</p>
<div class="container">
<div class="row">
<div class="col-lg text-center">
<h2>Good News</h2>
<p>Get your daily dose of happy news!</p>
<a class="preview-icon" href="/bliss/good-news/good-news.html">
<img src="https://www.flaticon.com/svg/static/icons/svg/3300/3300365.svg" height="120" width="120" alt="good news icon" class="mainIcon">
</a>
</div>
<div class="col-lg text-center">
<h2>Happy Tummy</h2>
<p>Find and share recipes to soothe the soul!</p>
<a class="preview-icon" href="/bliss/happy-tummy/happy-tummy.html">
<img src="https://www.flaticon.com/svg/static/icons/svg/823/823265.svg" height="120" width="120" alt="happy tummy icon" class="mainIcon">
</a>
</div>
<div class="col-lg text-center">
<h2>Mood Board</h2>
<p>Submit motivational messages for all to see!</p>
<a class="preview-icon" href="/bliss/mood-board/mood-board.html">
<img src="https://www.flaticon.com/svg/static/icons/svg/3300/3300049.svg" height="120" width="120" alt="mood board icon" class="mainIcon">
</a>
</div>
</div>
</div>
</div>
<footer>
<div>Icons made by <a class="pretty-links" href="https://www.flaticon.com/authors/kawaii/lineal" title="FreePik">FreePik</a> from <a class="pretty-links" href="https://www.flaticon.com/free-icon/heart_3158969" title="Flat Icon">Flat Icon</a></div>
</footer>
</body>
</html>