-
Notifications
You must be signed in to change notification settings - Fork 3
/
3-cards-app-data-current.html
96 lines (95 loc) · 5.67 KB
/
3-cards-app-data-current.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!--The sample code uses three center-aligned cards to highlight web apps with accompanying downloadable data used to create the app. All apps must provide data download. The cards will contain one image with caption, a hyperlinked title text, short call to action subtitle and two buttons for data download and opening web app.-->
<h1 class="text-center">TITLE</h1>
<h4 class="text-center">SUBTITLE</h4>
<br>
<br>
<!--all cards begin here. edit CAPS text with your content.-->
<ul class="cards-list">
<!--first card begins here with spacing rules for the specific item-->
<li class="col-sm-12 col-md-4">
<!--first card specifications for images and links-->
<div class="calcite-web">
<div class="card-base">
<div class="card-image-wrap">
<!--image at top of card sized at 480X270 size-->
<img alt="IMAGE HOVER TEXT" class="card-image" src="HTTPS://DUMMYIMAGE.COM/480X270">
<!--image caption maximum 33 characters-->
<div class="card-image-caption">
IMAGE CAPTION IN TRANSPARENT BOX - A
</div>
</div>
<div class="card-content">
<!--web app title link maximum 19 characters-->
<h4><a href="WEB APP LINK" target="_blank">WEB APP TITLE - A</a></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE - A</p>
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<!--web app buttons for data download and view app-->
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Data</a><a class="btn btn-primary"
href="WEB APP LINK"
target="_blank"
style="color:white">View</a>
</div>
</div>
</div>
</div>
</li>
<!--second card begins here with spacing rules for the specific item-->
<li class="col-sm-12 col-md-4">
<!--second card specifications for images and links-->
<div class="calcite-web">
<div class="card-base">
<div class="card-image-wrap">
<!--image at top of card sized at 480X270 size-->
<img alt="IMAGE HOVER TEXT" class="card-image" src="HTTPS://DUMMYIMAGE.COM/480X270">
<!--image caption maximum 33 characters-->
<div class="card-image-caption">
IMAGE CAPTION IN TRANSPARENT BOX - B
</div>
</div>
<div class="card-content">
<!--web app title link maximum 19 characters-->
<h4><a href="WEB APP LINK" target="_blank">WEB APP TITLE - B</a></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE - B</p>
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<!--web app buttons for data download and view app-->
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Data</a><a class="btn btn-primary"
href="WEB APP LINK"
target="_blank"
style="color:white">View</a>
</div>
</div>
</div>
</div>
</li>
<!--third card begins here with spacing rules for the specific item-->
<li class="col-sm-12 col-md-4">
<!--third card specifications for images and links-->
<div class="calcite-web">
<div class="card-base">
<div class="card-image-wrap">
<!--image at top of card sized at 480X270 size-->
<img alt="IMAGE HOVER TEXT" class="card-image" src="HTTPS://DUMMYIMAGE.COM/480X270">
<!--image caption maximum 33 characters-->
<div class="card-image-caption">
IMAGE CAPTION IN TRANSPARENT BOX - C
</div>
</div>
<div class="card-content">
<!--web app title link maximum 19 characters-->
<h4><a href="WEB APP LINK" target="_blank">WEB APP TITLE - C</a></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE - C</p>
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<!--web app buttons for data download and view app-->
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Data</a><a class="btn btn-primary"
href="WEB APP LINK"
target="_blank"
style="color:white">View</a>
</div>
</div>
</div>
</div>
</li>
</ul>