-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.07 KB
/
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
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="circle-uno"></div>
<div class="circle-dos"></div>
<div class="announcement-positive">
<span id="close">×</span>
<span class="positive-alert">✓</span>
<div class="announcement-text">
<span class="thanks">Thank you for subscribing!</span>
<span class="thanks-description">You will receive an email to confirm your subscription.</span>
</div>
<div class="shadow-effect-pos"></div>
</div>
<div class="announcement-negative">
<div class="shadow-effect-neg"></div>
<span id="close">×</span>
<div class="red-alert">×</div>
<div class="announcement-text">
<span class="ooups">Ooups! An error occured.</span>
<span class="ooups-description">Apologies for the inconvenience. Please try again.</span>
</div>
</div>
</body>
</html>