你的第一個網頁

twc829發表於2016-05-04

建議使用Notepad++或Brackets編寫HTML語言!

先新建檔案,另存為時,注意:檔名不僅填寫檔名,還要加上副檔名.html,儲存型別選擇All types/All files;

<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>my first web page</title>
	</head>
	<body>
		<h1>My first web page</h1>
		<p>Yo guys, hope you like my website. We sell fish.</p>
	</body>
</html>



相關文章