-
Notifications
You must be signed in to change notification settings - Fork 5
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
d16bd7f
commit 20275d8
Showing
17 changed files
with
116 additions
and
90 deletions.
There are no files selected for viewing
15 changes: 0 additions & 15 deletions
15
public/codes/html/introduction-html/hyperlink-pages/index.html
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,22 @@ | ||
<!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>Index</title> | ||
</head> | ||
<body> | ||
<h1>Index</h1> | ||
<p> | ||
<!-- Endereço relativo (index.html => page.html) --> | ||
<a href="pages/page.html">Index 2 Page</a><br /> | ||
<a href="./pages/page.html">Index 2 Page</a><br /> | ||
|
||
<!-- Endereço absoluto (page.html) --> | ||
<a href="/lm/codes/html/introduction/hyperlink-pages/pages/page.html"> | ||
Index 2 Page | ||
</a> | ||
</p> | ||
</body> | ||
</html> |
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
File renamed without changes.
File renamed without changes
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
File renamed without changes
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,21 @@ | ||
<!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>Image</title> | ||
</head> | ||
<body> | ||
<!-- Endereço relativo (index.html => ifpb-logo.png) --> | ||
<img src="imgs/ifpb-logo.png" alt="Logo do IFPB" /> | ||
<img src="./imgs/ifpb-logo.png" alt="Logo do IFPB" /> | ||
<img src="imgs/none.png" alt="Logo do IFPB" /> | ||
|
||
<!-- Endereço absoluto (ifpb-logo.png) --> | ||
<img | ||
src="/lm/codes/html/introduction/image/imgs/ifpb-logo.png" | ||
alt="Logo do IFPB" | ||
/> | ||
</body> | ||
</html> |
File renamed without changes.
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
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
File renamed without changes.
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