HTML Overview | Block 1 | Full Stack Development Course | #Lect-1 | APK Learning

INTRODUCTION

In this lecture, we are going to learn about basics of HTML or we can say that we are going to take an overview of this markup language HTML.

I hope, after this lecture, you'll able to describe about HTML yourself. This is going to be our first lecture and we'll try to teach you very basic concepts in detail as a perspective of a beginner. So lets get started:

Here is a brief description of our first block HTML and a list of topics covered under this block of full-stack development certification course:

The Web Structure

The ability to code using HTML is essential for any web professional. Acquiring this skill should be the starting point for anyone who is learning how to create content for the web. Modern Web Design

  • HTML: Structure
  • CSS: Presentation
  • JavaScript: Behavior
  • PHP or similar: Backend
  • CMS: Content Management

What is HTML?

>HTML stands for HyperText Markup Language. Unlike a scripting or programming language that uses scripts to perform functions, a markup language uses tags to identify content.Here is an example of an HTML tag:

<p> This is a paragraph </p>

Features of HTML:

  • HTML stands for Hyper Text Markup Language
  • HTML is the standard markup language for creating Web pages
  • HTML describes the structure of a Web page
  • HTML consists of a series of elements
  • HTML elements tell the browser how to display the content
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

Sample HTML code:



  Click Here to Download PDF

Comments