-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete.html
More file actions
38 lines (35 loc) · 1.37 KB
/
delete.html
File metadata and controls
38 lines (35 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style-delete.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/6b20b1c14d.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delete Contact</title>
</head>
<body>
<div class="container">
<header class="hero">
<a href="contact-profile.html">
<i class="fas fa-arrow-circle-left back-btn"></i>
</a>
<div class="hero-info">
<h1>Joshua Nguwo</h1>
<p class="relationship">Brother</p>
</div>
</header>
<section class="button-container">
<p>Are you sure you want to delete this contact?</p>
<a href="#">
<div class="update-container">
<i class="fas fa-trash icon-gradient"></i>
<button class="button">Delete Contact</button>
</div>
</a>
</section>
</body>
</html>