Welcome to the HTML+CSS class. Before we start learning formally, let’s warm up first, greet the world, and make the first HTML webpage in our lives!
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>制作我的第一个网页</title> </head> <body> <h1>Hello World</h1> </body> </html>