Code Set up
Lesson 1 of 12 in Coddy's Bottom Navigation Bar - HTML/CSS Project course.
Let's start with the <head> tag!
For icons, we will use Cloudflare.
Challenge
EasyCreate a title tag with text of your choice.
(Example: “Navigation Bar”)
Add a link tag with the href set to:
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.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>
<!-- Write HTML code here -->
</body>
</html>