-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 871 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>poetry punch!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 id="typingHeader" onclick="returnToMain()" style="cursor: pointer;">lara's poetry</h1>
</header>
<main>
<div id="searchBox">
<!-- Add onfocus attribute to trigger typing effect -->
<input type="text" id="searchBar" placeholder="Search for poems..." onkeyup="enterSearch(event)">
<button onclick="searchPoems()">Search</button>
</div>
<div class="grid-container" id="poemContainer">
<!-- Poems will be inserted here by the populatePoems function -->
</div>
</main>
<script src="scripts.js"></script>
</body>
</html>