-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.92 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
<!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>Dashboard cards adaptivity</title>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
</head>
<body>
<header>
<h2 class="header__caption">
Choose a layout
</h2>
</header>
<ul class="menu">
<li class="menu__item">
<a href="layout1.html" class="item__link">
<figure class="item__figure">
<p><img width="200" height="200" src="images/layout1.bmp" alt="Layout 1"></p>
<figcaption>Simple 2 medium - 1 large widgets</figcaption>
</figure>
</a>
</li>
<li class="menu__item">
<a href="layout2.html" class="item__link">
<figure class="item__figure">
<p><img width="200" height="200" src="images/layout2.bmp" alt="Layout 2"></p>
<figcaption>Simple 3 medium - 1 large widgets</figcaption>
</figure>
</a>
</li>
<li class="menu__item">
<a href="layout3.html" class="item__link">
<figure class="item__figure">
<p><img width="200" height="200" src="images/layout3.bmp" alt="Layout 3"></p>
<figcaption>Simple 4 large - 2 small widgets</figcaption>
</figure>
</a>
</li>
<li class="menu__item in-progress">
<a href="layout4.html" class="item__link">
<figure class="item__figure">
<p><img width="200" height="200" src="images/layout4.bmp" alt="Layout 4"></p>
<figcaption>Simple 2 small - 1 large widgets</figcaption>
</figure>
</a>
</li>
</ul>
</body>
</html>