Font-Awesome Icons
/* ICONS
Font-Awesome Icons
Free,Easy to get up running, simple syntax
*/
INDEX.HTML:
<!DOCTYPE html>
<html lang="en">
<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">
<title>CSS Tutorial</title>
<!-- icons -->
<script src="https://kit.fontawesome.com/87ed342652.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<i class="fas fa-home fa-10x"></i>
<span class="social-icon">
<i class="fab fa-facebook fa-3x"></i>
</span>
<i class="fa fa-phone fa-5x"></i>
<i class="fa-solid fa-signal fa-3x"></i>
<i class="fa-solid fa-truck-fast fa-3x"></i>
</body>
</html>
CSS:
/*
ICONS
Font-Awesome Icons
Free,Easy to get up running, simple syntax
*/
.fa-home {
color: red;
}
.social-icon {
font-size:3rem;
color: green;
}
评论
发表评论