Updated: Tuesday, October 10,2023-10-10 14:29:57
parent
fae740cbe8
commit
f4de1f343d
|
@ -52,6 +52,46 @@ Let's start with #1.
|
||||||
### HTML version declaration
|
### HTML version declaration
|
||||||
Every website starts with this line of code for HTML
|
Every website starts with this line of code for HTML
|
||||||
|
|
||||||
|
Start by typing this line in your program
|
||||||
|
```html
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
|
||||||
|
|
||||||
|
</html>
|
||||||
```
|
```
|
||||||
!
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Next is the Header!
|
||||||
|
|
||||||
```
|
```
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Next is the Body!
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title> This is the tile of my site!
|
||||||
|
<title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
Loading…
Reference in New Issue