-
Notifications
You must be signed in to change notification settings - Fork 3
/
4-cards-app-data-current.html
126 lines (124 loc) · 7.38 KB
/
4-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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!--The sample code uses four 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-xs-12 col-sm-6 col-lg-3">
<!--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 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-xs-12 col-sm-6 col-lg-3">
<!--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 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-xs-12 col-sm-6 col-lg-3">
<!--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 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>
<!--fourth card begins here with spacing rules for the specific item-->
<li class="col-xs-12 col-sm-6 col-lg-3">
<!--fourth 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 BOX - D
</div>
</div>
<div class="card-content">
<!--web app title link maximum 19 characters-->
<h4><a href="WEB APP LINK" target="_blank">WEB APP TITLE - D</a></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE - D</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>