Every HTML page we make here will follow the same pattern:
<!DOCTYPE html>
<html>
</html>
- Doctype - tells the browser which version of HTML we are using. We will only be writing modern HTML, so we only need DOCTYPE html.
Every HTML page we make here will follow the same pattern:
<!DOCTYPE html>
<html>
</html>