forked from casa0017-group7/casa0017-Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
86 lines (69 loc) · 2.79 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<!--bootatrap.css-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!--bootstrap.icon.css-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="/style.css">
<style>
main{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 1;
}
</style>
</head>
<body class="bg-dark">
<nav class="navbar navbar-expand-lg bg-dark" style="z-index: 2;">
<div class="container-fluid mx-3">
<a href="#" class="navbar-brand text-white">
<img src="img/Group 4 (2).png" type="button" onclick='location.href=("index.html")'>
</a>
<button
class="navbar-toggler text-white"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navmenu"
>
<span class="bi bi-list"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar nav ms-auto">
<li class="nav-item"><div class="nav-link text-white" type="button" onclick='location.href=("resources.html")'>Resourses</div></li>
<li class="nav-item"><div class="nav-link text-white" type="button" onclick='location.href=("about.html")'>About</div></li>
</ul>
</div>
</div>
</nav>
<main class="bg-dark text-light text-center text-lg-start" style="flex:1">
<div class="container">
<div class="d-flex">
<h1>CarbonMap - Serve The Future</h1></div>
<br>
<br>
<h3>A website to <span class="text-warning">visualize the data of each region's carbon intensity</span> in the United Kingdom .</h3>
<br>
<br>
<p class="lead">
<a href="#" class="btn btn-lg btn-light fw-bold border-white bg-white">Learn more</a>
</p>
<hr class="featurette-divider">
<h1>Why we create <strong class="text-warning">carbon intensity</strong> data visulization website?</h1>
<div> </div>
<h2>The reason why our team decide to establish carbon intensity data visualization website is in <strong class="text-warning">"5 Steps Go"</strong> flow chart.</h2>
<div style="text-align: center;">
<div> </div>
<img src="/img/5 steps go.jpg" alt="5 steps go" width="800px" style="text-align: center;">
<div> </div>
<hr class="featurette-divider">
</div>
</div>
</body>
</html>