HTML WORKSHOP 1

Using the free software brackets, we did our very first little HTML workshop. HTML is the language that is used to create websites. Since I had never done anything HTML related before, I found it a bit confusing. But I am planning to work through some Lynda tutorials to get ahead of the workshops.

In this workshop, I learned some basics. For example that a HTML code always has a “head” and a “body” part. The first one is to display the websites title, the second one for the actual content. Also, the code always had to start with <!DOCTYPE html> and it has to be opened with <html> and closed with </html>. In the following you can see the basic structure.

<!DOCTYPE html>
 
<html>
 
<head>
	<title></title>
</head>
 
<body>
 
</body>
</html>