In html, the "class attributes" are used semantically in
Answers
Answered by
0
<html>
<head>
<style>
h1.intro {
color: blue;
}
p.important {
color: green;
}
</style>
</head>
<body>
<h1 class="intro">Header 1</h1>
<p>A paragraph.</p>
<p class="important">Note that this is an important paragraph. </p>
</body>
</html>
so your answer is p tag
<head>
<style>
h1.intro {
color: blue;
}
p.important {
color: green;
}
</style>
</head>
<body>
<h1 class="intro">Header 1</h1>
<p>A paragraph.</p>
<p class="important">Note that this is an important paragraph. </p>
</body>
</html>
so your answer is p tag
Answered by
1
Answer:
Semantics is the study of meaning. There are two types of meaning: conceptual meaning and associative meaning. ... The conceptual meaning of concise is expressed in few words, but concise being a good thing is part of the associative meaning.
Similar questions