Posts

Showing posts from September, 2020

BASICS OF HTML

Image
     Learning HTML is all about learning how to use tags. In HTML the tag itself is self-explanatory and the only thing we should do is to place them correctly. So let's begin learning it with the following example     <!Doctype html>   This is not a HTML tag but this is the information to the browser to what document to expect. <html> HTML tag is the main tag and all  other HTML elements come under this. lang is used to input the language in which your webpage is written so that the search engine gets an idea about it. <head> this tag provides further more details about the webpage.it is inside this container that you provide title,style-sheets, scripts etc. <title> Under this tag you can give the title that you wish to show in your browser. <body> it is under the body tag that we build the webpage of our choice. <h1> It is a heading tag and we'll learn more about in the upcoming posts.     A tag for exa...

HTML - Getting Started

Image
want to build awesome websites?  and  don't know where to start .      HTML is the right place to begin with.  In web development, HTML is that simple spell which is quite unbreakable. Learning HTML is the most basic level to start learning to create webpages. before you move to any framework out there in the market it is better to start with HTML            Hypertext Markup Language (HTML)  is a standard system for creating webpages.HTML is what built the structure of the webpage. HTML webpages work best wi th CSS and scripting languages.HTML use various tag to create webpages. Learning webpage is all about learning different tags and their correct usage. Its one of the easiest language out there and all u need is a notepad and browser to start. What are you waiting for?         C O D E  W I T H  B I N A R Y P A G E S