-
Notifications
You must be signed in to change notification settings - Fork 48
/
01_simple_card.html
40 lines (32 loc) · 1.43 KB
/
01_simple_card.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
<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">
<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>
<h1>Oh my, an image!</h1>
<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>
<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>