21 lines
601 B
HTML
21 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Average eBay Price</title>
|
|
<link rel="stylesheet" href="styles/index.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<form>
|
|
<fieldset>
|
|
<legend>Enter Product Code</legend>
|
|
<input name="productCode" type="text" id="productCode">
|
|
<button id="submitProductCode">Submit</button>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<script src="scripts/index.js"></script>
|
|
</body>
|
|
</html> |