Menu
Coddy logo textTech

Title and External CSS

Lesson 2 of 23 in Coddy's Slider | Front-end Project course.

challenge icon

Challenge

Easy

1. Set a title to the page, anything you want!

To use the icons for left and right navigation, we will add an external CSS file:

2. Add a <link> tag rel="stylesheet" with the URL: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css

 

Note: Add this link tag before the already existing link tag

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <!-- Write HTML code here -->
    
    <link rel="stylesheet" href="styles.css">
</head>
    <body>

        <script src="script.js"></script>
    </body>
</html>

All lessons in Slider | Front-end Project