Answers for "add style script to html"

0

html add style

<!-- add this line into the head tag -->
<link rel="stylesheet" type="text/css" href="yourstylesheetname.css">
<!-- remember to change the irl in href -->
Posted by: Guest on May-11-2021
0

connect style sheet to html document

<!DOCTYPE html>
<html>
<head>
    <title>My first web page</title>
    <link rel="stylesheet" href="style.css">
</head>
...
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language