-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.css
52 lines (38 loc) · 884 Bytes
/
fonts.css
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
/*Fonts on Windows:
https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
Fonts on Macs:
https://en.wikipedia.org/wiki/List_of_typefaces_included_with_macOSfon
General Font Information:
http://www.cssfontstack.com/*/
/* Text Font and Size*/
h1{
font-family: 'Rowdies', cursive;
/*font-family: cursive;*/
}
p{
font-family: 'Rubik Bubbles', cursive;
}
body{
font-size: 20px;
}
p{
font-size: 10px;
}
#two{
font-size: 2.0em;
/* 2.0 em sets fot size to double the body font sie by default */
}
/*Font Properties*/
p{
font-style: italic;
font-weight: bold;
}
/*Text Properties*/
h1{
text-align: center;
}
/*If you want to use your own downloaded custom fonts:*/
/*@font-face{
font-family: your_font_name;
src: url(path/to/woff_file.woff);
}*/