-
Notifications
You must be signed in to change notification settings - Fork 0
/
articles.html
68 lines (49 loc) · 2.6 KB
/
articles.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
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet" href="styles/main.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp"
crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
</head>
<body>
<!--Navigation bar-->
<span id="content" style="display:none;">
<div id="nav-placeholder">
</div>
<div class="container" style="height:100%;">
<div class="row" style="margin-top:10%;margin-bottom:10%;">
<div class="col-sm-12 col-md-9 col-lg-9">
<p class="medium-heading-text">Mission Tomorrow: How humanity must prepare for the future?</p>
<p class="small-italics-description-text">August, 2019</p>
<p class="small-italics-description-text">Author: Harshil Shah</p>
<p class="small-description-text"> Humanity has spent centuries in gradually destroying the Earth; why not spend a few decades in correcting the mistakes that we have made in the past.
</p>
<span class="small-bold-description-text">
Link to the full article:</span>
<span class="small-description-text">
<a href="https://medium.com/@harshilshah_27445/mission-tomorrow-how-humanity-must-prepare-for-the-future-710f5601f919" style="text-decoration:none;color:blue;" target="_blank">Click here</a>
</span>
</div>
</div>
<hr style="width:80%;border-color:gray;" />
</div>
</div>
</span>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
$(document).ready(function () {
$("#content").fadeIn(1000);
});
</script>
</body>
</html>