Q Perform as instructed below
Link to an external style sheet namely personal.css from your index.html file.
Answers
Answered by
0
Answer:
<html>
<head>
<link rel="stylesheet" href="personal.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Explanation:
link external css using <link> in <head> tag the document name is index.html
Similar questions