25 lines
641 B
HTML
25 lines
641 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://www.icofonts.com/icofonts.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body class="theme">
|
|
|
|
<form id="form">
|
|
<label for="inputField">Stock Search:</label>
|
|
<input id="inputField" list="suggestions" min="1">
|
|
<datalist id="suggestions">
|
|
</datalist>
|
|
</form>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
|
|
</html>
|