HTML for beginners - learnit

Home Top Ad

Post Top Ad

Wednesday, May 13, 2020

HTML for beginners

HTML for beginners

HTML For Beginners: Learning HTML & CSS


HTML for Absolute Beginners

While many guides on the internet attempt to teach HTML using a lot of mind-boggling theory, this tutorial will instead focus on giving you the practical skills to build your first site.


The aim is to show you ‘how’ to create your first web page without spending the entire tutorial focusing too much on the “why.”


By the end of this tutorial, you will have the know-how to create a basic website and we hope that this will inspire you to delve further into the world of HTML using our follow-on guides.


What is HTML

this is the only bit of mandatory theory. In order to begin to write HTML, it helps if you know what you are writing.


HTML is the language in which most websites are written. HTML is used to create pages and make them functional.


The code used to make them visually appealing is known as CSS and we shall focus on this in a later tutorial.


The History of HTML

HTML was first created by Tim Berners-Lee, Robert Cailliau, and others starting in 1989. It stands for Hyper Text Markup Language.


Hypertext means that the document contains links that allow the reader to jump to other places in the document or to another document altogether. The latest version is known as HTML5.


A Markup Language is a way that computers speak to each other to control how text is processed and presented. To do this HTML uses two things: tags and attributes.


What are Tags and Attributes?

Tags and attributes are the basis of HTML.

They work together but perform different functions. it is worth investing 2 minutes in differentiating the two


What Are HTML Tags?

Tags are used to mark up the start of an HTML element and they are usually enclosed in angle brackets. An example of a tag is: <h1>.


Most tags must be opened <h1> and closed </h1> in order to function.


What are HTML Attributes?

Attributes contain additional pieces of information. Attributes take the form of an opening tag and additional info is placed inside.


Example

<img src="reanits.jpg" alt="This is My Website.">

In this instance, the image source (src) and the alt text (alt) are attributes of the <img"> tag.

Syntax:

<html>
<head>
<style css="text">
</style>
<title>reanits.com </title >
</head>
<body>
<footer>
</footer>
</body>
</html>

Example


<html>
<head>
<style css="text">
</style>
<title>reanits.com </title>
</head>
<body>
<h1>Hello Everybody </h1>
<footer>
Tel:092.....
</footer>
</body>
</html>

Please Watching My Video is Below

No comments:

Post a Comment

Post Top Ad