write a HTML program to display your school name in heading style and background colour will be pink.
Answers
Answered by
1
Explanation:
This short tutorial is meant for people who want to start using CSS and have never written a CSS style sheet before.
This short tutorial is meant for people who want to start using CSS and have never written a CSS style sheet before.It does not explain much of CSS. It just explains how to create an HTML file, a CSS file and how to make them work together. After that, you can read any of a number of other tutorials to add more features to the HTML and CSS files. Or you can switch to using a dedicated HTML or CSS editor, that helps you set up complex sites.
Answered by
8
Explanation:
<html>
<head>
<title>My Document </title>
<style type="text/css">
body{background-colour:"pink"}
</style>
</head>
<body>
<h1>St.Mary's School</h1>
</body>
</html>
Similar questions