-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (115 loc) · 3.84 KB
/
Copy pathindex.html
File metadata and controls
137 lines (115 loc) · 3.84 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
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
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<title>Furious Coder, Font Style for Pros</title>
<link rel="stylesheet" href="stylePro.css" type="text/css" media="all" />
<style>
.retina {
font-family: 'Furious Coder';
font-weight: 500;
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
.light {
font-family: 'Furious Coder';
font-weight: 300;
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
.medium {
font-family: 'Furious Coder';
font-weight: 600;
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
.regular {
font-family: 'Furious Coder';
font-weight: 400;
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
.bold {
font-family: 'Furious Coder';
font-weight: 700;
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
.heart {
color: red;
/* font-size: 2.4rem; */
}
.code {
color: gold;
/* font-size: 2.4rem; */
}
.heading {
font-family: 'HelveticaNeue', 'Furious Coder';
font-weight: 500;
font-size: 1.6rem;
text-align: center;
}
.footer {
font-family: 'HelveticaNeue', 'Furious Coder';
font-weight: 500;
font-size: 1.0rem;
}
a {
color: blue;
text-decoration: none;
}
</style>
</head>
<body>
<h1 class="heading">Furious Coder by Xenon Lucifer Diablo. <br> Based on <a href="https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode">Fura Code</a> by <a href="https://github.com/ryanoasis/nerd-fonts">Nerd Fonts</a>.</h1>
<p class="light">
<br>
Light Furious Coder i.e. font-weight ==> 300 <br>
if (baby==1) { <br>
printf("The quick brown fox jumps over the lazy dog."); <br>
} <br><br>
This is a sample code, because I <b class="heart">♥</b> <b class="code"></b>.
</p>
<p class="regular">
<br>
Regular Furious Coder i.e. font-weight ==> 400 <br>
if (baby==1) { <br>
printf("The quick brown fox jumps over the lazy dog."); <br>
} <br><br>
This is a sample code, because I <b class="heart">♥</b> <b class="code"></b>.
</p>
<p class="retina">
<br>
Retina Furious Coder i.e. font-weight ==> 500 <br>
if (baby==1) { <br>
printf("The quick brown fox jumps over the lazy dog."); <br>
} <br><br>
This is a sample code, because I <b class="heart">♥</b> <b class="code"></b>.
</p>
<p class="medium">
<br>
Medium Furious Coder i.e. font-weight ==> 600 <br>
if (baby==1) { <br>
printf("The quick brown fox jumps over the lazy dog."); <br>
} <br><br>
This is a sample code, because I <b class="heart">♥</b> <b class="code"></b>.
</p>
<p class="bold">
<br>
Bold Furious Coder i.e. font-weight ==> 700 <br>
if (baby==1) { <br>
printf("The quick brown fox jumps over the lazy dog."); <br>
} <br><br>
This is a sample code, because I <b class="heart">♥</b> <b class="code"></b>.
</p>
<center><p class="footer"> Copyright (C) <a href="https://lucidex.co">Xenon Lucifer Diablo</a>. All Rights Reserved.</p></center>
</body>
</html>