Posts

Showing posts from July, 2022

HTML Introduction

  Front-end Languages-HTML & CSS The Basics of HTML <DOCTYPE HTML> Version of html Document type <html></html> html document Start & end document <head><head> Holds page information (Title,Icon) <title></title> Define page title <body></body> Define body Holds viewable information HTML Format <! DOCTYPE html > < html >     < head >< title ></ title ></ head >     < body >            </ body > </ html >