HTML

Easy way to upload with PHP and HTML

In this tutorial I will show you how to upload a file on your server using PHP script and HTML form. The basics HTML form In order to be able to upload a file, make sure your form has: – enctype=”multipart/form-data” – method=”post” <form enctype="multipart/form-data" action="upload.php" method="post"> Please choose a file: <input type="file" name="uploadedFile" /> ...

(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++ ...

Problems using UTF-8 on your website?

Is your website in other language than english? Does your website contain characters that are not in the english alphabet? Then you really need your website to accept UTF-8 encoding. Of course, there are more standards (ISO 8859-1, ISO 8859-2 etc), but UTF-8 gets all the characters you need. UTF-8 and HTML – In order ...