-
Notifications
You must be signed in to change notification settings - Fork 48
/
02_multiple_cards_float.html
70 lines (56 loc) · 3.29 KB
/
02_multiple_cards_float.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
<html>
<head>
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; width=device-width" />
<link rel="stylesheet" href="assets/css/styles.css" type="text/css" />
</head>
<body>
<div class="content float-left">
<div class="card">
<h1>This is a card!</h1>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
<div class="card">
<div class="card-image image1"></div>
<p>Yep, just some simple content ecapsulated in this card.</p>
</div>
<div class="card">
<div class="card-image image2">
<div class="banner"></div>
<h2>Image, Banner, & HTML</h2>
</div>
<p>All standard HTML structures, styled with CSS.</p>
</div>
<div class="card fixed-width">
<h1>This is a card!</h1>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
<div class="card fixed-width">
<div class="card-image image3">
<h2>Image, Banner, & HTML</h2>
</div>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
<div class="card fixed-width">
<h1>This is a card!</h1>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
<div class="card fixed-width">
<div class="card-image image4">
<div class="banner"></div>
<h2>Image, Banner, & HTML</h2>
</div>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
<div class="card fixed-width">
<h1>This is a card!</h1>
<p>In essence, a card is just a rectangular region which contains content. This content could be text, images, lists, etc... The card UI methaphor dictates the interaction and layout of these regions.</p>
</div>
</div>
<div class="header">
Cards in an HTML UI
</div>
<div class="footer">
All images copyright 2013 <a href="http://tricedesigns.com/" target="_blank">Andrew Trice</a>.
</div>
</body>
</html>