Make your first page

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>


Continuing Learning
||
1
2
3
4
5
6
7
8
9
10
<!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>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
submitReset Code
图片放大关闭