Add initial project skeleton
This commit is contained in:
39
public/index.html
Normal file
39
public/index.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Baseball Cards Search</title>
|
||||
<link rel="stylesheet" href="/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Baseball Cards Search</h1>
|
||||
<p class="subtitle">Search eBay sold listings for a player's cards.</p>
|
||||
</header>
|
||||
|
||||
<section class="controls">
|
||||
<div class="control grow">
|
||||
<input id="player" type="text" placeholder="Enter a player name (e.g., Derek Jeter)" autocomplete="off" />
|
||||
</div>
|
||||
<div class="control">
|
||||
<label> </label>
|
||||
<button id="searchBtn">Search Sold</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="results" class="results"></section>
|
||||
|
||||
<template id="card-template">
|
||||
<div class="card">
|
||||
<img class="card-img" alt="Card image" />
|
||||
<div class="meta">
|
||||
<div class="line player"></div>
|
||||
<div class="line secondary"></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="/app.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user