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;
}


评论

此博客中的热门博文

又一款美国免费主机,无限流量动态X10hosting

Nginx【Docker系列】一个反向代理神器——Nginx Proxy Manager

::Before And ::After Pseudo Elements