-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
76 lines (74 loc) · 4.09 KB
/
dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
</head>
<body>
<!-- <div class="bg-img"></div> -->
<video autoplay muted loop id="earthVideo">
<source src="resources/earth rotate.mp4" type="video/mp4">
</video>
<div class="body-container">
<div class="sidebar">
<center class="mb-5">
<img src="./resources/calm-logo.png" class="img-fluid" alt="" id="logo" />
</center>
<a href="#" class="text-decoration-none"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-home p-1"></i></span><span class="ml-2">Home</span></a>
<a href="meditate.html" class="text-decoration-none"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-circle-notch p-1"></i></span><span class="ml-2">Meditate</span></a>
<a href="body.html" class="text-decoration-none"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-walking p-1"></i></span><span class="ml-2">Body</span></a>
<a href="scenes.html" class="text-decoration-none"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-tree p-1"></i></span><span class="ml-2">Scene</span></a>
<a href="profile.html" class="text-decoration-none"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="far fa-user-circle p-1"></i></span><span class="ml-2">Profile</span></a>
</div>
<div class="container" id="featured">
<div class="row">
<div class="col-12">
<div class="display-4 text-white">Featured</div>
</div>
<div class="col-10 my-3">
<div class="card mb-3 border-0" id="perfect" style="max-width:800px; max-height: 150px;">
<div class="row no-gutters">
<div class="col-2">
<img src="resources/keep calm.jpg" style="min-height: 150px;" id="cPic1" class="card-img" alt="keepcalm" />
</div>
<div class="col-8">
<div class="card-body">
<blockquote class="blockquote">
<p id="quotes" ></p>
<footer class="blockquote-footer" id="author"></footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
<div class="col-10">
<div class="card mb-3 perfect border-0" id="perfect1" style="max-width: 800px; max-height: 150px;">
<div class="row no-gutters">
<div class="col-2">
<img src="resources/143c29f3eab3aa85c274327e1524d380.jpeg" style="height: 150px;" id="cPic2" class="card-img" alt="miracle" />
</div>
<div class="col-8">
<div class="card-body">
<blockquote class="blockquote">
<p id="quotes1"></p>
<footer class="blockquote-footer" id="author1"></footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/5897268a0d.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="dashboard.js"></script>
</body>
</html>