Create a webpage with Internal CSS to apply Colors, Fonts and Sizes in text.
Answers
Answered by
2
<head>
<style type="text/css">
body{
font-family: Arial;
font-size: 14px;
color: red;
}
</style>
</head>
<body>
<h1>T'is the text</h1>
<p>Hey, internal CSS has been applied!</p>
</body>
Similar questions