-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarvin.html
More file actions
50 lines (36 loc) · 1023 Bytes
/
Copy pathmarvin.html
File metadata and controls
50 lines (36 loc) · 1023 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Happy Birthday, Marvin!</title>
<link rel="icon" href="/admin-img/favicon.png">
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<br>
<p>Click card to open</p>
<section id="header">
<div class="card">
<!-- CLOSED -->
<div id="closed">
<img src="admin-img/front.png" alt="Card Front">
</div>
<!-- OPEN -->
<div id="opened">
<div class="left-panel">
<img src="admin-img/front.png" alt="Card Inside Image">
</div>
<div class="right-panel">
<div class="inner-content">
<h1>Dear Marvin,</h1>
<h3>Happy Birthday!</h3>
<p>See you on Monday :)</p>
</div>
</div>
</div>
</div>
</section>
<script src="assets/main.js"></script>
</body>
</html>