-
Notifications
You must be signed in to change notification settings - Fork 3
/
6-medallions.html
126 lines (119 loc) · 5.72 KB
/
6-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
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
<!--This sample will create a title and a set of 6 medallions with specific stacking behavior when resizing browsers. Edits text in CAPS with your content. Medallions will resize to 3 on top, 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-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div>
<br>
<center>
<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>
</center>
</div>
</a>
</li>
<!--second medallion begins here-->
<li class="col-xs-12 col-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div>
<br>
<center>
<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>
</center>
</div>
</li>
<!--third medallion begins here-->
<li class="col-xs-12 col-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div>
<br>
<center>
<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>
</center>
</div>
</li>
<!--fourth medallion begins here-->
<li class="col-xs-12 col-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div>
<br>
<center>
<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>
</center>
</div>
</li>
<!--fifth medallion begins here-->
<li class="col-xs-12 col-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div>
<br>
<center>
<a href="WEB PAGE LINK">
<!--image at 102x102 in size-->
<img src="IMAGE WEB LINK"
alt="IMAGE HOVER TEXT"><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>
</center>
</div>
</li>
<!--sixth medallion begins here-->
<li class="col-xs-12 col-md-4 col-lg-2" style="padding-top: 7px; padding-bottom: 7px;">
<div><br>
<center>
<a href="WEB PAGE LINK"
target="_blank">
<!--image at 102x102 in size-->
<img src="IMAGE LINK PAGE"
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 LINK BREAK</a>
</center>
</div>
</li>
</ul>
</div>