-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (43 loc) · 2.11 KB
/
index.html
File metadata and controls
58 lines (43 loc) · 2.11 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- link to Bootstrap - Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- link to Bootstrap - Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- link the favicon icon -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- link to Google fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik&display=swap">
<!-- link to CSS normalization stylesheet -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- link to external stylesheet -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Frontend Mentor | Interactive comments section</title>
</head>
<body class="page-font-styles">
<!-- Pull dynamic content from the data.json file -->
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
<!-- Bootstrap modal for comments delete button-->
<!-- The Modal -->
<div class="modal" id="myModal" tabindex="-1" role="dialog" data-bs-backdrop="static" data-bs-keyboard="false">
<div class=" modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class=" delete-modal-heading bold">Delete Comment</div>
<div class="gray page-font-styles">Are you sure you want to delete this comment? This will remove the comment
and can't be
undone</div>
<button type="button" class="no-cancel-button btn btn-secondary" data-bs-dismiss="modal">No, Cancel</button>
<button type="button" class="yes-delete-button btn btn-danger" data-bs-dismiss="modal">Yes, Delete</button>
</div>
</div>
</div>
<!-- Link to external script -->
<script src="js/scripts.js"></script>
</body>
</html>