Posts

Showing posts from March, 2021

Forms.html

  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Forms </ title > </ head > < body >      < h2 > This is HTML forms tutorial </ h2 >      < form   action = "backend.php" >          < label   for = "name" > Name </ label >          < div >              < input   type = "text"   name = "myName"   id = "name" >      ...

Tables and lists.html

  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Tables and lists </ title > </ head > < body >      < ul   type = "square" >          < li > This is the first item of my unorederd list </ li >          < li > This is the Second item of my unorederd list </ li >          < li > This is the Third item of m...

Tables and lists1.html

  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Tables and lists </ title > </ head > < body >      < ul >          < li > This is the first item of my unorederd list </ li >          < li > This is the Second item of my unorederd list </ li >          < li > This is the Third item of my unorederd l...

Start Journey.html

 vscode install first shruti.html <! DOCTYPE   html > <!-- This is our html document --> < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < meta   mame = "description"   content = "This is description" >      < meta   name = "keywords"   content = "html, html tutorials, web development" >      < meta   name = "robots"   content = "INDEX.FOLLOW" >      < title > Shruti </ title >      <!-- This is how you include exrernal...

Heading Paragraphs and headings.html

  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Heading Paragraphs and headings </ title > </ head > < body >      < h1 > Shruti </ h1 >        < h2 > Shruti </ h2 >        < h4 > Shruti </ h3 >        < h5 > Shruti </ h5 >      < h6 > Shruti </ h6 >        <!-- Lorem23  dummy text with 23 words -->      < p > Lorem...

Document.html

  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Document </ title > </ head > < body >      < a   href = "http://google.com"   target = "-blank" > Go to google </ a >< br >      < a   href = "http://facebook.com"   target = "-blank" > Go to facebook </ a >< br >      < a   href = "http://twitter.com"   target = "-blank" > Go to twitter </ a >< br >      < a   href = "http://linkedin.com"   target...