-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (31 loc) · 852 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<!-- Logo -->
<img class="logo" src="logo.png" alt="Logo">
<!-- Featured -->
<h2>Featured</h2>
<a class="featured" href="">Feature Link 1</a>
<!-- Popular Content -->
<h2>Popular Content</h2>
<a href="">Link 1</a>
<a href="">LInk 2</a>
<a href="">Link 3</a>
<!-- Channels -->
<h2>Follow Me on</h2>
<div class="channels">
<a href="">Blog</a>
<a href="">Linkedin</a>
<a href="">Instagram</a>
</div>
</div>
</body>
</html>