Web Technology - Old Questions
5. What is CSS? How can you use an internal CSS? Explain.
5 marks
|
Asked in 2074
CSS is a language that describes the style of an HTML document. It describes how HTML elements should be displayed.
Internal CSS
The internal style sheet is used to add a unique style for a single document. It is defined in <head> section of the HTML page inside the <style> tag.
E.g.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: linen;
}
h1 {
color: red;
margin-left: 80px;
}
</style>
</head>
<body>
<h1>The internal style sheet is applied on this heading.</h1>
<p>This paragraph will not be affected.</p>
</body>
</html>