mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
13 lines
394 B
HTML
13 lines
394 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Website main page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, world!</h1>
|
|
<p>Welcome to this demo website.</p>
|
|
<p><a href="another.html">Click here</a> to go to another page.</p>
|
|
</body>
|
|
</html>
|