-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.69 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.69 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
<!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>Personal Responsive Page</title>
</head>
<body>
<header>
<img src="jd.jpg" alt="Header Image" style="width: 10%; height: auto;">
<h1>Jason E. Diaz</h1>
</header>
<div class="content">
<div class="menu">
<a href="#the-walk" class="menuitem active">The Walk</a>
<a href="#transport" class="menuitem">Transport</a>
<a href="#history" class="menuitem">History</a>
<a href="#gallery" class="menuitem">Gallery</a>
</div>
<div class="main" id="the-walk">
<h2>The Walk</h2>
<p>The walk from Monterosso to Riomaggiore will take you approximately two hours, give or take an hour depending on the weather conditions and your physical shape.</p>
<img src="dj.png" alt="Cinque Terre" style="width: 100%;">
</div>
<div class="right">
<h2>Information</h2>
<marquee behavior="scroll" direction="up" scrollamount="2">
<p>Cinque Terre comprises five villages: Monterosso, Vernazza, Corniglia, Manarola, and Riomaggiore.</p>
<p>Located on the northwest coast of the Italian Riviera, north of the city La Spezia.</p>
<p>The Walk is free!</p>
</marquee>
</div>
</div>
<footer>
<p>This webpage is part of a demonstration of fluid web design. Resize the browser window to see the content respond to the resizing.</p>
</footer>
</body>
</html>