Saturday, 13 April 2013

HTML/CSS

HTML stands for HyperText Markup Language. It is the skeleton of every website. It is the design of the website in code. Here is an example of a simple website with a title, "My Website", and a sentence, "Hello world!", in HTML:


<html>
<head>
<title>My Website</title>
</head>
<body>
<h1> <b>My Website</b> </h1>
<hr>
Hello world!
</body>
</html>

This blog is made out of HTML, and I can change the text (Hello) background to white and the text to black by typing in this into Blogger's inbuilt HTML editor:

<span style="background-color: black; color: white;">Hello</span>

No comments:

Post a Comment