Skip to content

Commit a03f2ec

Browse files
committed
Finished 'Links and Images' HTML Foundations
1 parent 29722e5 commit a03f2ec

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[ZoneTransfer]
2+
ZoneId=3
3+
HostUrl=https://images.unsplash.com/photo-1517849845537-4d257902454a?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&dl=charlesdeluvio-Mv9hjnEUHR4-unsplash.jpg&w=640

odin-links-and-images/images/dog.jpg

84.4 KB
Loading

odin-links-and-images/index.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en">
4+
5+
<head>
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>Document</title>
9+
</head>
10+
11+
<body>
12+
13+
<h1>Homepage</h1>
14+
<hr>
15+
16+
<!--
17+
2 Types of Links:
18+
* Absolute - to other websites on the Internet.
19+
* Relative - to other webpages on our own website.
20+
-->
21+
<a href="https://www.theodinproject.com/about">click me!</a>
22+
<hr>
23+
24+
<a href="./pages/about.html">About</a>
25+
<img alt="The Odin Project Logo" src="https://www.theodinproject.com/mstile-310x310.png">
26+
27+
<hr>
28+
29+
<img alt="doggo" src="./images/dog.jpg">
30+
31+
</body>
32+
33+
</html>
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en">
4+
5+
<head>
6+
<meta charset="UTF-8">
7+
<title>Odin Links and Images</title>
8+
</head>
9+
10+
<body>
11+
<h1>About Page</h1>
12+
<hr>
13+
14+
<img alt="The Odin Project Logo" src="https://www.theodinproject.com/mstile-310x310.png">
15+
<hr>
16+
17+
<!-- note the extra dot: Parent Directory -->
18+
<img alt="doggo" src="../images/dog.jpg">
19+
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)