-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathexample.html
More file actions
57 lines (47 loc) · 1.46 KB
/
example.html
File metadata and controls
57 lines (47 loc) · 1.46 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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ProDigi - Credits</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom -->
<link href="css/card.css" rel="stylesheet">
</head>
<body>
<header>
<div class="navbar navbar-dark bg-dark">
<div class="container d-flex justify-content-between">
<a href="index.html" class="navbar-brand">ProDigi</a>
</div>
</div>
</header>
<main role="main">
<section class="jumbotron text-center">
<h2>Example</h2>
<div>
<div id="row" class="row">
</div>
<div id="curr" class="curr">
</div>
</div>
</section>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p>ProDigi Basic Course Projects</p>
</div>
</footer>
<!-- Core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/card.js"></script>
</body>
</html>