Today I have learned how to create my own website. It was the first time I had attempted doing this. My website contained two headings, some coloured text and an image with a link within it. I have learned about HTML which stands for Hypertext Markup Language. All websites are based on this script. We used tags <p> which means paragraph, <h1> which stands for heading 1.
<title>Sam's Website</title>
<style type="text/css">
h1 {
color: red;
font-size:46px;
font-style:italic;
}
h2 {
color: green;
font-size:50px;
}
this is an example of the sort of tags you would use when creating a webpage.
No comments:
Post a Comment