-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfont-test.php
More file actions
63 lines (40 loc) · 1.39 KB
/
font-test.php
File metadata and controls
63 lines (40 loc) · 1.39 KB
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
<?php
/*
Template Name: RotoFontTest
*/
get_header('inicio');
?>
<section class="grid-x cell h-a p-top color-blanco">
<div class="columns small-10 small-centered">
<div class="columns m-b-4">
<h1 class="columns small-12 h-a p-0-2 subheader text-center">Headings</h1>
<?php
for ($i=1; $i < 9; $i++):
?>
<span class="columns small-1 p-0-2"><?php echo $i ?></span>
<h1 class="columns small-11 h-a p-0-2 text-left font-headings-<?php echo $i;?>">Nucleoroto ipsum est</h1>
<?php endfor; ?>
</div>
<!-- -->
<div class="columns m-b-4">
<h1 class="columns small-12 h-a p-0-2 subheader text-center">Contenidos</h1>
<?php
for ($i=1; $i < 7; $i++):
?>
<span class="columns small-1 p-0-2"><?php echo $i ?></span>
<p class="columns small-11 h-a p-0-2 text-left font-l font-contenidos-<?php echo $i;?>">Nucleoroto ipsum est</p>
<?php endfor; ?>
</div>
<!-- -->
<div class="columns m-b-4">
<h1 class="columns p-0-2 subheader text-center">Especiales</h1>
<?php
for ($i=1; $i < 6; $i++):
?>
<span class="columns small-1 p-0-2"><?php echo $i ?></span>
<h3 class="columns small-11 h-a p-0-2 text-left font-especial-<?php echo $i;?>">Nucleoroto ipsum est</h3>
<?php endfor; ?>
</div>
</div>
</section>
<?php get_footer('inicio'); ?>