亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Getting started with HTML documents

Create a new text document on the desktop and rename it demo1.html

Write the following code in it:

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>PHP中文網(wǎng)</title>
</head>
<body>
   This is ipnx.cn!
</body>
</html>

微信圖片_20180314102704.png

After saving, right-click to open the file in a browser, as shown below:

微信圖片_20180314102720.png

##If garbled characters appear, modify the browser settings to Simplified Chinese format

微信圖片_20180314102855.png

Continuing Learning
||
<?php echo "我的第一個網(wǎng)頁";
submitReset Code