-
Notifications
You must be signed in to change notification settings - Fork 0
/
pic-preview.html
21 lines (19 loc) · 976 Bytes
/
pic-preview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
.img-container{
display:flex;
justify-content: space-around;
flex-wrap:wrap;
}
.img-container > figure {
flex: 1 1 500px;
}
</style>
</head>
<body onload="app.init()"><div class="img-container"><figure><img src= "svgs/performance-2-power.svg" alt="performance-2-power"><figcaption>performance-2-power</figcaption></figure><figure><img src= "svgs/performance-2-census.svg" alt="performance-2-census"><figcaption>performance-2-census</figcaption></figure><figure><img src= "svgs/performance-2-fcshuman.svg" alt="performance-2-fcshuman"><figcaption>performance-2-fcshuman</figcaption></figure><figure><img src= "svgs/performance-2-mixsim.svg" alt="performance-2-mixsim"><figcaption>performance-2-mixsim</figcaption></figure></div></body>
</html>