In our lesson today we was learning about how to create our own webpage. We learnt about html (hyper text marker language). Using this information we had to create codes to make the design for our webpage. At first it seemed confusing, but the more codes we had it became to come a little clearer. We also changed the colours of text and the font and the boldness. We also inserted our own pictures from the web. We just had a play around to get a feel for create our own website.
I enjoyed the task of creating the website, it was different and something new to learn. I liked the idea of having my own web page. Hopefully we learn a lot more about web pages and i seemed to pick the technique up quite quick.
This is my code for my web page:
<!DOCTYPE html>
<html>
<head>
<title>holly's site</title>
<style type="text/css">
h1 {
color: pink;
font size: 44px;
font-style: bold;
}
P {
color: #f4228a;
}
</style>
</head>
<body>
<h1>Hello there</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<h2><h1>This is another heading</h1></h2>
<a href="images/Choc boy.jpg"><img src="images/Choc boy-thumb.jpg" /></a>
</body>
</html>