-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbrowser.html
More file actions
29 lines (28 loc) · 773 Bytes
/
browser.html
File metadata and controls
29 lines (28 loc) · 773 Bytes
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
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snowglobe Reading Prototype</title>
<style>
/* Add your CSS styling here */
#textContainer {
position: relative;
height: 500px; /* Adjust as needed */
overflow: hidden;
border: 1px solid #000;
white-space: nowrap; /* Keep words on a single line */
}
button {
margin-top: 20px;
padding: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="textContainer"></div>
<button id="switchButton">Switch Text</button>
<script src="script.js"></script>
</body>
</html>