x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<!-- Latest compiled and minified Bootstrap CSS -->
5
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
6
7
<style>
8
body {
9
padding-top: 1em;
10
}   
11
</style> <div class="container-fluid">
12
        
13
<div class="card text-center" style="max-width: 202px;">
14
15
<!-- Heading -->
16
<div class="card-body">
17
<h4 class="card-title">Sun Gone</h4>
18
<h6 class="card-subtitle text-muted">Sun disappears!</h6>
19
</div>
20
21
<!-- Image -->
22
<img src="/pix/samples/12s.jpg" alt="Photo of sunset">
23
24
<!-- Text Content -->
25
<div class="card-body">
26
<p class="card-text">The sun disappeared behind the horizon today. Experts claim it could be gone for good!</p>
27
<a href="#" class="btn btn-primary">Full Report</a>
28
</div>
29
30
</div>
31
32
</div>
33
        
34
<!-- jQuery library -->
35
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
36
37
<!-- Popper -->
38
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
39
40
<!-- Latest compiled and minified Bootstrap JavaScript -->
41
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
42
43
<!-- Initialize Bootstrap functionality -->
44
<script>
45
// Initialize tooltip component
46
$(function () {
47
  $('[data-toggle="tooltip"]').tooltip()
48
})
49
50
// Initialize popover component
51
$(function () {
52
  $('[data-toggle="popover"]').popover()
53
})
54
</script>