YuezhenQin / responsive-web-design

1 stars 0 forks source link

HTML #6

Open YuezhenQin opened 8 months ago

YuezhenQin commented 8 months ago

https://resilientwebdesign.com/chapter2/#ost%20HTML%20elements%20exist%20for%20a%20reason.%20They%20have%20been%20created%20and%20agreed%20upon%20in%20order%20to%20account%20for%20specific%20situations%20that%20authors%20like%20you%20and%20I%20are%20likely%20to%C2%A0encounter.

YuezhenQin commented 8 months ago

self-closing elements

  1. meta
  2. link
  3. input
    
    <!DOCTYPE html>
YuezhenQin commented 7 months ago

Structure of the page

Navigation is a core part of accessibility, and screen readers rely on you to provide the structure of your page. This is accomplished with semantic HTML elements.

  <body>
    <header></header>
    <main></main>

  </body>