-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
30 lines (28 loc) · 842 Bytes
/
news.html
File metadata and controls
30 lines (28 loc) · 842 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CrypTick</title>
<!-- Semantic UI CDN Link -->
<link rel="stylesheet" type="text/css" href="css/semantic.css" />
<script src="jquery-3.6.0.min"></script>
<script src="css/semantic.min.js"></script>
</head>
<body>
<div class="ui inverted three item menu small">
<div class="item">
<i class="chart line icon"></i>
<span>Cryptick</span>
</div>
<a href="coins.html" class="orange item">Coins</a>
<a href="#" class="active orange item">News</a>
</div>
<div class="ui inverted segment">
<h2 class="ui orange inverted center aligned header">
Latest Crypto News
</h2>
</div>
<!-- News Feed -->
<div id="articles" class="ui cards"></div>
<script src="news.js"></script>
</body>
</html>