mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 05:44:06 -06:00
30 lines
486 B
Markdown
30 lines
486 B
Markdown
---
|
|
title: "html"
|
|
aliases:
|
|
tags:
|
|
- cosc203
|
|
---
|
|
|
|
Defines the items and the heirarchy of items on a webpage
|
|
|
|
Elements are made up of four things:
|
|
- Opening and closing tags
|
|
- Content
|
|
- Attributes
|
|
|
|
They are stucture like so:
|
|
- <tag attribute="value"> hello world </tag>
|
|
|
|
Elements can be nested within each other to create more complex arrangements
|
|
|
|
There are many types of element
|
|
|
|
- Table
|
|
- Image
|
|
- Heading
|
|
- div, aside, section, nav etc
|
|
- meta, title,
|
|
- list
|
|
- iframe
|
|
- svg
|
|
- and more |