-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
55 lines (46 loc) · 1.91 KB
/
test.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Modal Example</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Keynote - Becoming a Great Developer with Google Developers Programs</h4>
</div>
<br>
<p> November 20th, 2021 3:00pm - 3:30pm 45 Min</p>
<h4>Overview</h4>
<div class="modal-body">
<p>Let’s get on a hands-on session where you would experience creating a virtual machine from scratch. Now, we would start by diving down the AWS console and then we would go on to create a Linux VM on EC2 with help of asymmetric encryption and then connect it with the loved VSCode.
By the end, you would be able to run your workloads directly on EC2 via VSCode and use it for development purposes.</p>
</div>
<br>
<div>
<p>
Speakers
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>