rust-book-cn/listings/ch20-web-server/listing-20-15/hello.html

12 lines
176 B
HTML
Raw Normal View History

2021-05-09 14:49:31 +08:00
<!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>