-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (51 loc) · 2.45 KB
/
index.html
File metadata and controls
64 lines (51 loc) · 2.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flexbox demo</title>
<link href='flexbox.css' rel='stylesheet'>
<style>
html, body{
height: 100%;
}
h1{
font-size: 0.95vw;
letter-spacing: 0.25vw;
}
h1 span{
font-size: 2.5vw
}
div{
padding: 32px 32px;
}
</style>
</head>
<body class="flex row wrap justify-content-stretch align-items-stretch">
<a class="bg-info flex col justify-content-center align-items-center flex-grow-1" target="blank" href="demo1.html">
<h1 class="uppercase">Demo <span>1</span></h1>
<span>Admin like template</span>
</a>
<a class="bg-danger flex col justify-content-center align-items-center flex-grow-1" target="blank" href="demo2.html">
<h1 class="uppercase">Demo <span>2</span></h1>
<span>Simple blog template</span>
</a>
<a class="bg-success flex col justify-content-center align-items-center flex-grow-1" target="blank" href="demo3.html">
<h1 class="uppercase">Demo <span>3</span></h1>
<span>Classic template with 2 sidebars</span>
</a>
<a class="bg-warning flex col justify-content-center align-items-center flex-grow-1" target="blank" href="demo4.html">
<h1 class="uppercase">Demo <span>4</span></h1>
<span>Classics template with collapsible elements</span>
</a>
<a class="bg-danger flex col justify-content-center align-items-center flex-grow-1" target="blank" href="demo5.html">
<h1 class="uppercase">Demo <span>5</span></h1>
<span>Classics template with collapsible elements and Toggle position</span>
</a>
<a class="bg-dark flex col justify-content-center align-items-center flex-grow-1" target="blank" href="https://github.com/Benfarhat">
<h1>Flexbox CSS Demo</h1>
<span>by Benfarhat Elyes</span>
</a>
</body>
</html>