mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-28 15:40:04 +00:00
26 lines
720 B
HTML
26 lines
720 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Test Page</h1>
|
|
<nav>
|
|
<a href="/page1" id="link1">First Link</a>
|
|
<a href="/page2" id="link2">Second Link</a>
|
|
</nav>
|
|
<form id="testForm" action="/submit" method="post">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" placeholder="Enter username">
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" placeholder="Enter email">
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password">
|
|
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</body>
|
|
</html>
|