-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.html
56 lines (52 loc) · 2.07 KB
/
text.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="data:,">
</head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
<style>
.background-container {
background-image: url("elia_logo.png");
background-size: cover;
background-position: center;
height: 100vh;
background-attachment: fixed;
}
</style>
<body>
<div class="background-container">
<div class="container-fluid">
<div class="row">
<div class="col-3"></div>
<div class="col-6">
<div class="card mt-5">
<div class="card-body">
<p class="card-text">
<h2><u>MPC for flexible asset steering using the real-time price</u></h2>
<h4>Benefits</h4>
<ul>
<li>Comfort, even under unlikely high prices</li>
<li>Integration for all devices</li>
<li>Real life ready</li>
</ul>
<h4>Value</h4>
<ul>
<li>Not dependent on negative prices</li>
<li>Take into account most likely future</li>
<li>Anticipate high prices</li>
<li>Not rule based</li>
<li>Scalability</li>
</ul>
</p>
</div>
</div>
</div>
<div class="col-3"></div>
</div>
</div>
</div>
</body>
</html>