-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
83 lines (69 loc) · 2.82 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
<!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">
<title>Building Simulation and Optimization 2020</title>
<!-- Bootstrap -->
<link href="css/bootstrap-4.3.1.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<body> <!-- style="background-color:hsla(0,0%,90%,1.00)">-->
<nav class="navbar navbar-dark bg-dark navbar-expand-md fixed-top">
<div class="container">
<button class="navbar-toggler" type="button"
data-toggle="collapse" data-target="#myTogglerNav"
aria-controls="myTogglerNav"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a href="https://www.bso2020.org" class="navbar-brand">BSO-V 2020</a>
</div><!-- container -->
</nav><!-- nav -->
<header>
<div class="container-fluib mb-0 mt-5" id="banner"
style="height: 150px;
background: url('images/BSO20_header.jpg') no-repeat right center;
background-size: cover;
margin-bottom: 20px;
">
</div>
<div class="jumbotron mb-0">
<div class="container text-center">
<h1 class="display-5">Building Simulation and Optimization 2020</h1>
<p class="h5">September 21<sup>st</sup> and 22<sup>nd</sup> 2020</p>
<p class="h5">IBPSA England's First Virtual Conference</p>
<p>Hosted by the Building Energy Research Group at Loughborough University</p>
</div>
</div>
</header>
<main>
<div class="container-fluid text-center py-4" style="width:70%">
<p>This site is no longer active. Please go to bso2020.org for the conference webpage</p>
<a href="https://www.bso2020.org" class="btn btn-primary mb-2"> Go to Site</a>
</div>
<footer>
<div class="container-fluid bg-dark text-light py-4">
<div class="container d-flex">
<p>
Building Simulation and Optimization is the biannual conference of
<a href="https://www.ibpsa-england.org/">IBPSA-England</a>
, the English chapter of the International Building
Performance and Simulation Association.
</p>
<a href="https://www.ibpsa-england.org/">
<img src="images/ibpsa-logo.png" width="180" height="100"
alt="IBSPA-England logo"/>
</a>
</div><!--container-->
</div><!--container-fluid-->
</footer>
</main>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-3.3.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/popper.min.js"></script>
<script src="js/bootstrap-4.3.1.js"></script>
</body>
</html>