Welcome to the class 9 disaster digital technology main lesson
To add a new web page to your series of websites you will need to add a new file to your current repository. Make sure to add the right headers and tags to the file.
<html>
<head>
</head>
<body>
</body>
</html>
Anything that is part of the meta Datat of the webpage goes into the header.
Anything that is part of the key information on the webpage goes into the body.
You can edit or change text on the fly by using an “in-line” style alteration to the text. this can change the font-size, colour, positiion and justification of the text. you can do this in the opening tag of most elements on a webpage i.e:
<h1 stlye = ""color: blue; font-size: 36px;"> This text is blue and 36 pixels tall. </h1>
make sure that you use a ; between each stlye element, and that all of them are encased in “” marks.