Beginners guide to (x)HTML

(X)HTML for Beginners – Lesson 4: Links

Hello everyone. Here we are, today we’ll discuss about the most important element websites have: Links. We see them and click on them everytime we visit a website. What whould have been the internet without links? First, let’s see thet basic structure of a link: <a href=”value” title=”value”>Text to click on</a> So we see that ...

(X)HTML for Beginners – Lesson 3: Body and Page Divisions

Hello everyone. In the last post, I talked about the <head> part of an html file. Now I should say more about the <body> part and the most used (X)HTML tags. The <body> contains the tags that you will properly see in the page. Like: <input type=”button” value=”My button” /> If you put this code ...

(X)HTML for Beginners – Lesson 2: Tags and Meta tags

Hello everyone. First I’d like to talk about tags’ structure. There are 2 kinds of tags: 1. tags that can have inner content: <tag attribute=”value” attribute=”value”>inner content goes here</tag> We have opening tag, attributes, content and closing tag Inner content can be other tags, text or both. We already learned such tags in the former ...

(X)HTML for Beginners – Lesson 1: The basics

- What will I learn? In this first lesson we will learn what is HTML and the basic structure of an (X)HTML page. – What do I need? 1) For the start, you will need a text editor. We will use it to write and edit the code. For this tutorial we will use Notepadd++ ...