Posts

Showing posts from July, 2023

MY ENTIRE HTML PRACTICE IN ONE PAGE

  DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body >   < main >   < label for = "101" > < input type = "radio" value = "XI" name = "class" id = "101" > XI </ label > < br > < br > < label for = "102" > < input type = "radio" value = "XII" name = "class" id = "102" > class XII </ label > < br > < label for = "MATH" > < input type = "checkbox" value = "MATH" name = "subject" id = "103" > MATH </ label > < Br > < label for = "COMPUTER SCIENCE" >   < input type = "che...

MY FIRST CODING IN HTML

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body >   < h1 > hello world </ h1 >   </ body > </ html >