-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacbeth.html
More file actions
30 lines (28 loc) · 1.03 KB
/
macbeth.html
File metadata and controls
30 lines (28 loc) · 1.03 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LADY MACBETH</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="display-4 text-center mb-4">LADY MACBETH</h1>
<div class="card">
<div class="card-body">
<div class="card-text" style="white-space: pre-line;">LADY MACBETH.
Out, damned spot! out, I say! One; two. Why, then ’tis time to do’t.
Hell is murky! Fie, my lord, fie! a soldier, and afeard? What need we
fear who knows it, when none can call our power to account? Yet who
would have thought the old man to have had so much blood in him?
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>