-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
53 lines (43 loc) · 824 Bytes
/
notes.html
File metadata and controls
53 lines (43 loc) · 824 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
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div {
margin-bottom: 15px;
padding: 4px 12px;
}
.danger {
background-color: #ffdddd;
border-left: 6px solid #f44336;
}
.success {
background-color: #ddffdd;
border-left: 6px solid #4CAF50;
}
.info {
background-color: #e7f3fe;
border-left: 6px solid #2196F3;
}
.warning {
background-color: #ffffcc;
border-left: 6px solid #ffeb3b;
}
</style>
</head>
<body>
<h2>Notes</h2>
<div class="danger">
<p><strong>Danger!</strong> Some text...</p>
</div>
<div class="success">
<p><strong>Success!</strong> Some text...</p>
</div>
<div class="info">
<p><strong>Info!</strong> Some text...</p>
</div>
<div class="warning">
<p><strong>Warning!</strong> Some text...</p>
</div>
</body>
</html>