-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (111 loc) · 4.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
<title>Ruebook</title>
</head>
<body>
<!-- <div class="container-fluid p-5 bg-primary text-white text-center">
<h1>Ruebook</h1>
<p>A daily journal to share your thoughts!</p>
</div> -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html"><img src="images/Logo-500.png" width="30" height="30" class="d-inline-block align-top" alt="">Ruebook</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="./index.html">Home</a>
<a class="nav-link" href="./about.html">About</a>
<a class="nav-link" href="./journal.html">Journal</a>
<a class="nav-link" href="./archive.html">Archive</a>
</div>
</div>
</div>
</nav>
<div class="container">
<!-- <div class="card">
<p class="h3">Happiness is...</p>
<div class="card-body">
abound within you today! Keep up the good work!
</div>
</div> -->
<!-- <div class="card">
<div class="card-header">
Featured
</div>
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div> -->
<div class="card" style="border-radius: 15px;" id="happyCard">
<div class="card-body p-5">
<div class="text-center mb-4 pb-2">
<img src="images/happy-2048.png" alt="Happyface" width="250px">
</div>
<figure class="text-center mb-0">
<blockquote class="blockquote">
<p class="pb-3">
<p class="lead">What is happiness</p>
<i class="fas fa-quote-left fa-xs text-primary"></i>
<span class="lead font-italic">but a sweet summer's day?</span>
<i class="fas fa-quote-right fa-xs text-primary"></i>
</p>
<p class="lead" style="font-size: 0.8em">Keep up the positive attitude and face life with what you've got!</p>
</blockquote>
</figure>
</div>
</div>
<div class="card" style="border-radius: 15px;" id="sadCard">
<div class="card-body p-5">
<div class="text-center mb-4 pb-2">
<img src="images/sad-2048.png" alt="Sadface" width="250px">
</div>
<figure class="text-center mb-0">
<blockquote class="blockquote">
<p class="pb-3">
<p class="lead">When faced with difficulty</p>
<i class="fas fa-quote-left fa-xs text-primary"></i>
<span class="lead font-italic">remember that hope is a powerful thing.</span>
<i class="fas fa-quote-right fa-xs text-primary"></i>
</p>
<p class="lead" style="font-size: 0.8em">In this moment, keep hope that times shall soon bear for the the better; whilst we acknowledge difficultly, take upon this hardship to set upon a moment of renewal.</p>
</blockquote>
<!-- <figcaption class="blockquote-footer mb-0">
Thomas Edison
</figcaption> -->
</figure>
</div>
</div>
<div class="card" style="border-radius: 15px;" id="sadCard">
<div class="card-body p-5">
<div class="text-center mb-4 pb-2">
<img src="images/mix-2048.png" alt="Neutralface" width="250px">
</div>
<figure class="text-center mb-0">
<blockquote class="blockquote">
<p class="pb-3">
<p class="lead">Feeling indifferent, nothing in particular?</p>
<i class="fas fa-quote-left fa-xs text-primary"></i>
<span class="lead font-italic">It's neutral.</span>
<i class="fas fa-quote-right fa-xs text-primary"></i>
</p>
<p class="lead" style="font-size: 0.8em">Another same day, we feel you.</p>
</blockquote>
<!-- <figcaption class="blockquote-footer mb-0">
Thomas Edison
</figcaption> -->
</figure>
</div>
</div>
</div>
</body>
</html>