HTML & CSS Tutorial
HTML & CSS Tutorial | Total-QA HTML & CSS Tutorial for Beginners 1. Introduction to HTML HTML (HyperText Markup Language) is used to structure a webpage using tags.
|
1 2 3 4 5 6 7 8 9 10 11 |
<!DOCTYPE html> <html> <head> <title>My First Webpage</title> </head> <body> <h1>Hello, World!</h1> <p>This is my first webpage.</p> </body> </html> |
2…. Read more »