-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
752afb1
commit 42a46aa
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!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"> | ||
<title>Links and Images</title> | ||
</head> | ||
<body> | ||
<p> | ||
<a href="http://google.com">Click for google</a> | ||
</p> | ||
<p> | ||
<a href="http://google.com" target="_blank ">Click for google</a> | ||
</p> | ||
<p> | ||
<a href="/03_meta_tags.html" target="_blank">Meta tags</a> | ||
</p> | ||
|
||
<img src="/img/20150113_134433.jpg" alt="my image" width="100"> | ||
|
||
<img src="https://source.unsplash.com/random/200x200/?fruit" alt="where's my fruit?"> | ||
|
||
<img src="https://source.unsplash.com/random/200x200/?nature" alt="I need to get outside..."> | ||
|
||
<img src="https://source.unsplash.com/random/600x400/?boat" alt="Where's me vessel?"> | ||
</body> | ||
</html> |