Updated: Tuesday, October 10,2023-10-10 14:29:57

main
Shwetha Jayaraj 2023-10-10 14:30:11 -04:00
parent fae740cbe8
commit f4de1f343d
1 changed files with 42 additions and 2 deletions

View File

@ -52,6 +52,46 @@ Let's start with #1.
### HTML version declaration  
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>
---