-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.1 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
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- displays site properly based on user's device -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="./src/styles.css" />
<script type="module" src="/src/main.ts"></script>
<title>Frontend Mentor | Interactive comments section</title>
</head>
<body>
<main id="app">
<template>
<div class="modal">
<div class="delete__modal">
<h2 class="delete__title">Delete comment</h2>
<p class="delete__text">
Are you sure you want to delete this comment? This will be remove
the comment and can't be undone.
</p>
<div class="delete__choices">
<button class="delete__no">No, cancel</button>
<button class="delete__yes">Yes, delete</button>
</div>
</div>
</div>
</template>
</main>
</body>
</html>