forked from deepanshugera45/DevelopHowTo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
34 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#DeveloperCup').modal('show');
});
</script>
</head>
<body>
<div class="modal fade" id="DeveloperCup" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" style="font-size:25px; margin-left:30px;">Registration for Developer Cup is Going On</p>
<h1 id="exampleModalLabel" style="margin-left:140px; font-family: 'Satisfy', cursive; ">Developers Cup</h1>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
</div>
<h1>Hello World!</h1>
</body>
</html>