I'm new to HTML and I want to show this text(except those red underlines) on my HTML page, I have studied all of the HTML tags and wrote this code. but still, it's not like the text :( if anyone could, please help me fix it.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h2>Brandning</h2>
<p>
<big>I build and activate brands through cultural insigh & strategic vision.</big>
</p>
<p>
<big>See more products</big>
</p>
<footer>
<p>© 2020 Cris. All rights reserved</p>
</footer>
</body>
</html>
bigtag is obsolete and should not be used . Don't use HTML to style your document, that is the job of CSS (HTML does provide a foundation and play a part)<pre></pre>tag for preformatted text, but HTML does not dictate style. Use CSS for that. You should know that one or more white spaces in HTML shows up as only a single white space. Whether the Browser takes that space off at the very begging of a tags textContent depends on the Browser. For this reason I actually do*{ font-size:0; }in CSS, then individually assignfont-sizemore directly. You could indent like.indent{ margin-left:10px; }then just addclass='indent'to your HTML tags. Just comments.