DOM Construction

Bytes → characters → tokens → nodes → DOM

Dom Construction
Part of Series: Critical Rendering Path
Table of Contents

DOM Construction Process

<!doctype html>
<html>
  <head>
    <meta name="viewport" content="width=device-width,initial-scale=1" />
    <link href="style.css" rel="stylesheet" />
    <title>Critical Path</title>
  </head>
  <body>
    <p>Hello <span>web performance</span> students!</p>
    <div><img src="awesome-photo.jpg" /></div>
  </body>
</html>

DOM Construction Process

References


Topics

Next In Series: CSSOM Construction