-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
50 lines (48 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>D2I Contacts Tools</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
background: #f9f9f9;
}
iframe {
border: none;
border-radius: 8px;
width: 100% !important;
height: 100vh;
display: block;
}
</style>
</head>
<body>
<nav class="navbar navbar-dark bg-dark mb-4">
<div class="container d-flex justify-content-between align-items-center">
<a class="navbar-brand" href="#">Contacts|D2I Members processing - D2I Tools</a>
<div class="d-flex align-items-center">
<span class="navbar-text text-white me-2">Data to Insight</span>
<img src="./assets/images/d2i_logo.png" alt="D2I Logo" width="30" height="30" />
</div>
</div>
</nav>
<div class="container">
<div class="row mb-4">
<div class="col-12">
<h4>Update, clean, merge all d2i contacts</h4>
<iframe
src="./upload_tool.html"
width="100%"
height="600"
loading="lazy">
</iframe>
</div>
</div>
</div>
</body>
</html>