0% found this document useful (0 votes)
83 views

Notepad: We Will Need To Make A Stylesheet For This

The document discusses creating a stylesheet for an HTML document. It specifies CSS properties for the h1 tag including centering text, font size of 50pt, and bold italic freestyle script font. It then notes that the stylesheet will be saved as 1.css in the same folder as the HTML file, which links to the stylesheet and contains an h1 tag saying "I hate you".

Uploaded by

api-295360018
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
83 views

Notepad: We Will Need To Make A Stylesheet For This

The document discusses creating a stylesheet for an HTML document. It specifies CSS properties for the h1 tag including centering text, font size of 50pt, and bold italic freestyle script font. It then notes that the stylesheet will be saved as 1.css in the same folder as the HTML file, which links to the stylesheet and contains an h1 tag saying "I hate you".

Uploaded by

api-295360018
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

We will need to make a stylesheet for this:

h1 {text-align: center;
font-size: 50pt;
font-weight: bold italic;
Font-family: "Freestyle Script", serif}

Then we will save this stylesheet: 1.css and save in the


same folder with notepad

NOTEPAD
<html>
<head>
<title>My</title>
<link rel="stylesheet" type="text/css" href="1.css">
<body>
<h1>I hate you</h1>
</body>
</html>

You might also like