-
Notifications
You must be signed in to change notification settings - Fork 3
/
4-medallions.html
81 lines (73 loc) · 3.39 KB
/
4-medallions.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
<!--This sample will create a title and a set of 4 medallions with specific stacking behavior when resizing browsers. Edits text in CAPS with your content. Medallions will resize to 2 on top before becoming a single column. Images must be 102x102.-->
<!--title begins here as a separate element-->
<br xmlns="http://www.w3.org/1999/html">
<h1 class="text-center">TITLE</h1>
<p class="text-center">SUBTITLE</p>
<div class="row">
<ul class="cards-list">
<!--individual medallions begin here, class definitions below control specific behavior-->
<!--first medallion begins here-->
<li class="col-xs-12 col-sm-6 col-md-3"
style="text-align: center; padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<br>
<a href="WEB PAGE LINK"
target="_blank">
<!--image at 102x102 in size-->
<img src="IMAGE WEB LINK"
alt="IMAGE HOVER TEXT"></a><br>
<a Href="WEB PAGE LINK"
target="_blank" style="color:#333">
<!--text below image up to three lines. adjust with break tags for stacking-->
<!--title text in medallion maximum 25 characters-->
SAMPLE TEXT:<br>2ND LINE BREAK<br>3RD LINE BREAK</a>
</a>
</li>
<!--second medallion begins here-->
<li class="col-xs-12 col-sm-6 col-md-3"
style="text-align: center; padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<br>
<a href="WEB PAGE LINK"
target="_blank">
<!--image at 102x102 in size-->
<img src="IMAGE WEB LINK"
alt="IMAGE HOVER TEXT"></a><br>
<a href="WEB PAGE LINK"
target="_blank" style="color:#333">
<!--text below image up to three lines. adjust with break tags for stacking-->
<!--title text in medallion maximum 25 characters-->
SAMPLE TEXT:<br>2ND LINE BREAK<br>3RD LINE BREAK</a>
</li>
<!--third medallion begins here-->
<li class="col-xs-12 col-sm-6 col-md-3"
style="text-align: center; padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<br>
<a href="WEB PAGE LINK"
target="_blank">
<!--image at 102x102 in size-->
<img src="WEB IMAGE LINK"
alt="IMAGE HOVER TEXT"></a><br>
<a href="WEB PAGE LINK"
target="_blank"
style="color:#333">
<!--text below image up to three lines. adjust with break tags for stacking-->
<!--title text in medallion maximum 25 characters-->
SAMPLE TEXT:<br>2ND LINE BREAK<br>3RD LINE BREAK</a>
</li>
<!--fourth medallion begins here-->
<li class="col-xs-12 col-sm-6 col-md-3"
style="text-align: center; padding-bottom: 24px; padding-left: 10px; padding-right: 10px;">
<br>
<a href="WEB PAGE LINK"
target="_blank">
<!--image at 102x102 in size-->
<img src="WEB IMAGE LINK"
alt="IMAGE HOVER TEXT"></a><br>
<a href="WEB PAGE LINK"
target="_blank"
style="color:#333">
<!--text below image up to three lines. adjust with break tags for stacking-->
<!--title text in medallion maximum 25 characters-->
SAMPLE TEXT:<br>2ND LINE BREAK<br>3RD LINE BREAK</a>
</li>
</ul>
</div>