-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfontawesome-custom.html
39 lines (39 loc) · 1.05 KB
/
fontawesome-custom.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/fontawesome/css/all.min.css" rel="stylesheet">
<title>폰트어썸</title>
<style>
.apple {
font-size: 60px;
color: red;
background-color: lightpink;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
border: 5px solid grey;
}
.red {
font-size: 50px;
color: red;
}
.blue {
font-size: 50px;
color: blue;
}
</style>
</head>
<body>
<i class="apple fas fa-apple-alt"></i> <br><br>
<i class="red fas fa-camera"></i>
<i class="blue fas fa-camera"></i> <br>
<i class="fas fa-hand-peace"></i>
<i class="far fa-hand-peace"></i>
<i class="fas fa-heart"></i>
<i class="far fa-envelope"></i>
</body>
</html>