-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 889 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Multigram Home</title>
</head>
<body>
<header class="salmon-bg">
<h1>Multigram Home</h1>
</header>
<nav class="salmon-bg">
<a id="orange-bg" href="feed.html">Multigram Feed</a>
</nav>
<br>
<main>
<img src="https://static.vecteezy.com/system/resources/previews/005/351/796/original/cactus-on-circle-silhouette-logo-design-modern-flower-vector.jpg"
alt="Cactus stock photo for demonstration">
</main>
<footer>
<div>
<p>This is a line of text.</p>
</div>
<p>My eyes are <span style="color: #557A5E;">green</span>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>