forked from cs4241-22a/a4-creative-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopening.html
More file actions
27 lines (27 loc) · 924 Bytes
/
opening.html
File metadata and controls
27 lines (27 loc) · 924 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>XP.css example</title>
<meta charset="UTF-8" />
<!-- Windows XP Theme (include only one theme at a time) -->
<link rel="stylesheet" href="https://unpkg.com/xp.css" />
</head>
<body>
<div class="window" style="width: 300px; margin: auto; padding: auto;">
<div class="title-bar">
<div class="title-bar-text">Ready to Draw?</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>This drawing application was made by</p>
<p>Chayanne Sandoval-Williams for</p>
<p>CS 4241: Webware</p>
<button onclick="window.location.href= 'index.html'" type="button">Enter the Application</button>
</div>
</div>
</body>
</html>