User:ZUZU/Winter Break
With practice over the past month, I've found that using wiki to keep track of my learning process has worked well for me, so I've decided to continue this winter break.
WEEK 12
Saturday 9 December
start with HTML&CSS
- basic HTML structure
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My First HTML Page</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> </body> </html>