generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cristina.html
106 lines (94 loc) · 3.29 KB
/
cristina.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="wEshare/static/css/style.css">
<style>
.card {
color: white;
background-color: #927397;
margin: 10px 40px;
border: 2px solid #dedede;
border-radius: 10px;
padding: 10px;
}
.btn {
background-color: #0b6623;
}
.btn-primary {
border: none;
margin-top: 15px;
margin-right: 10px;
float: right;
}
.btn-primary:hover {
background-color: #cc92f8;
}
</style>
<title>Document</title>
</head>
<body>
<!--Nav bar section-->
<nav class="navbar navbar-expand-lg navbar-light bg-secondary rounded-bottom">
<div class="container-fluid">
<a class="navbar-brand text-white" href="#"> wEshare </a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Logout</a>
</li>
</ul>
<span class="navbar-text text-white">
Username - status
<br>
How do you feel today?
<label for="customRange1" class="form-label"></label>
<input type="range" class="form-range" id="customRange1">
<br>
<br>
</span>
</div>
</div>
</nav>
<!--Chat box section-->
<div class="card">
<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>
</div>
</div>
<!-- Footer section -->
<footer class="fixed-bottom text-center bg-secondary mt-3 pt-3">
<a class="display-6 text-center text-light" href="index.html">Shelly's Page</a><br>
<a class="display-6 text-center text-light" href="rhiannon.html">Rhiannon's page</a>
<div class="my-2"><i class="fab fa-twitter"></i> <i class="fab fa-facebook"></i></div>
<div class="my-2">wEshare 2022 All Rights Reserved</div>
</footer>
<!-- Footer section -->
<footer class="fixed-bottom text-center bg-secondary mt-3 pt-3">
<a class="display-6 text-center text-light" href="index.html">Shelly's Page</a><br>
<a class="display-6 text-center text-light" href="cristina.html">Cristina's page</a>
<div class="my-2"><i class="fab fa-twitter"></i> <i class="fab fa-facebook"></i></div>
<div class="my-2">wEshare 2022 All Rights Reserved</div>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<script src="script.js"></script>
</body>
</html>