-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharticle.html
46 lines (45 loc) · 1.45 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article</title>
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="./style/devto.css">
<link rel="stylesheet" href="./style/article.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Oxanium:600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">Blog - <span class="name"></span></a>
</header>
<article>
<img id="cover" alt="cover image">
<h1 id="title"></h1>
<address>
<img id="author-img" alt="Author">
<span id="author-name" class="name"></span>
<p id="date"></p>
<ul>
<li>
<a id="twitter" target="_blank" rel="noopener">Twitter</a>
</li>
<li>
<a id="github" target="_blank" rel="noopener">GitHub</a>
</li>
<li>
<a id="homepage" target="_blank" rel="noopener"></a>
</li>
<li>
<a id="devto" target="_blank" rel="noopener">dev.to</a>
</li>
</ul>
</address>
<ul id="tags"></ul>
<div id="article-body"></div>
</article>
<footer>
</footer>
<script src="./script/article.js"></script>
</body>
</html>