-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-article.html
76 lines (65 loc) · 2.64 KB
/
template-article.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
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Oghneya</title>
<!-- Bootstrap Library -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous">
<link href="css/style.css" type="text/css" rel="stylesheet">
<!-- External Icon Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="page">
<header>
</header>
<div class="container text-center" id="article-head" style="background-color: white;">
<div class="container">
<!--WHERE TO PLACE ALBUM COVERS-->
<img class="container" src=""
alt="ALBUM COVER DESCRIPTION" style="max-width: 450px; max-height: 450px;">
</div>
</div>
<div class="container" id="separator">
</div>
<div id="content" class="article-body container">
<div class="row">
<div class="col-lg-8 text-box">
<div>
<h1>An Analysis of INSERT SONG NAME HERE</h1>
<p>Posted On DATE HERE By Ryan P.</p>
</div>
<!--SOURCES ARE LISTED BELOW-->
<div id="sources">
<h2>References</h2>
<ol>
<!--USE ORDERED LIST ITEMS-->
<li><a id="" href="">
SOURCE 1
</a></li>
<li><a id="" href="">
SOURCE 2
</a></li>
</ol>
</div>
</div>
<div class="col-lg-3 sidebar" style ="background-color: white;">
<img class="sidead"
alt="A placeholder image for advertisements" src="https://www.adspeed.com/placeholder-123x456.gif">
</div>
</div>
</div>
<footer>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous">
</script>
<script src="js/article.js">
</script>
</body>
</html>