17 lines
357 B
HTML
17 lines
357 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Demonstrates external JavaScript -->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<script src="hello4.js"></script>
|
|
<title>hello</title>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<input autocomplete="off" autofocus id="name" placeholder="Name" type="text">
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|