-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 2.53 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 2.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/brands.min.css"
integrity="sha512-OivR4OdSsE1onDm/i3J3Hpsm5GmOVvr9r49K3jJ0dnsxVzZgaOJ5MfxEAxCyGrzWozL9uJGKz6un3A7L+redIQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Robin's Random Rants</title>
</head>
<body>
<header>
<div class="navbar">
<h1 class="logo"><span>R</span>obin's <span>R</span>andom <span>R</span>ants</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="rant.html">Rant</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="blog-overview">
<article class="article-card">
<a href="blog-1.html"><img class="image" src="../images/shortcuts_street.jpg" alt="Shortcuts"></a>
<h2>Rant About People taking Shortcuts</h2>
</article>
<article class="article-card">
<a href="blog-2.html"><img class="image"
src="https://images.pexels.com/photos/3671151/pexels-photo-3671151.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="E-Scooter"></a>
<h2>Rant About E-Scooter</h2>
</article>
<article class="article-card">
<a href="blog-3.html"><img class="image"
src="https://images.pexels.com/photos/3806764/pexels-photo-3806764.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="Trash Can"></a>
<h2>Rant About Neighbors and Their Waste Behavior</h2>
</article>
<article class="article-card">
<a href="blog-4.html"><img class="image" src="../images/inconsistent-charging-cable.jpg"
alt="Inconsistant Charging Cable"></a>
<h2>Rant About Inconsistant Charging Cables</h2>
</article>
</section>
</main>
<footer class="footer">
<div class="social">
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter fa-2x"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fa-brands fa-instagram fa-2x"></i></a>
<a href="https://www.twitch.com" target="_blank"><i class="fa-brands fa-twitch fa-2x"></i></a>
<a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube fa-2x"></i></a>
</div>
</footer>
</body>
</html>