trpl-zh-cn/listings/ch20-web-server/listing-20-08/hello.html
2022-02-06 16:43:51 +08:00

12 lines
176 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello!</title>
</head>
<body>
<h1>Hello!</h1>
<p>Hi from Rust</p>
</body>
</html>