Menu
Coddy logo textTech

Setup

Lesson 2 of 26 in Coddy's Coddy Profile Card Clone | Front-end project course.

Let's start with the <head> tag!

For icons, we will use boxicons.

challenge icon

Challenge

Easy
  1. Create a title tag with text of your choice.
  2. Add a link tag with the href set to 

    https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css

    (Note: Make sure you create the above link tag before the already present style document link tag.)

Try it yourself

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

All lessons in Coddy Profile Card Clone | Front-end project