-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.html
36 lines (29 loc) · 1.28 KB
/
modal.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" >
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" ></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<p style="color:grey">Welcome to PetBot </p>
<button type="button">×</button>
</div>
<img src="images/h3.jpg">
<div class="modal-body">
<div class="modal-footer">
<button type="btn btn-lg" style="background-color: darkblue;">Save Changes</button>
<button type="btn btn-lg btn-default" class="data-dismiss">Close</button>
</div>
</div>
</div>
</body>
</html>