Fill the empty file index.html with the source code shown below.
Proceed step by step and observe the results in the browser after each step.
Create the basic structure for your webpage.
Insert these two lines between <head> and </head>:
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
The first section specifies that the text of the webpage is encoded in UTF-8 character set.
The second paragraph specifies how the webpage should behave in terms of display area.
Give your webpage a title for the tab.
Next is the first heading for our webpage.
Like a well-organized binder, a webpage should also be neatly subdivided.
Subheadings can be used for subdivision.
Our webpage also needs text as content.
Text sections are indicated by so-called paragraphs and initiated with the tag <p>
.
At the end, the tag must be closed with </p>
.
The text is currently not very nicely arranged.
With line breaks, you can further subdivide the text.
For this purpose, you use the <br>
tag.
The <br>
tag is not closed at the end.
Insert line breaks in the text.
Add the section for "Detecting Fake News".
The new subheading is initiated with the <h3>
tag and closed with </h3>
.
The source code contains a series of formatting.
The links in the following list lead to the explanations: