-
Notifications
You must be signed in to change notification settings - Fork 3
/
2-featured-cards.html
67 lines (66 loc) · 4.05 KB
/
2-featured-cards.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
<!--The sample code uses two center-aligned cards to highlight web apps and 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-6" style="padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<!--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
</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></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE</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-6" style="padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<!--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
</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></h4>
<!--web app subtitle must be two lines and read as a call to action, maximum 67 characters-->
<p>WEB APP SUBTITLE</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>