-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Doc] Fixed malformed HTML code of page footer (#1467)
1 parent
c51bc03
commit 3f5cb2a
Showing
1 changed file
with
24 additions
and
33 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 |
---|---|---|
@@ -1,35 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Eclipse Foundation Links</title> | ||
<style> | ||
.links-container ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.links-container ul li { | ||
display: inline; | ||
margin-right: 10px; | ||
} | ||
<style> | ||
.links-container ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.links-container ul li:last-child { | ||
margin-right: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="links-container"> | ||
<h5>Eclipse Foundation</h5> | ||
<ul> | ||
<li><a href="http://www.eclipse.org">Website</a></li> | ||
<li><a href="http://www.eclipse.org/legal/privacy.php">Privacy policy</a></li> | ||
<li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li> | ||
<li><a href="http://www.eclipse.org/legal/copyright.php">Copyright agent</a></li> | ||
<li><a href="http://www.eclipse.org/legal">Legal</a></li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> | ||
.links-container ul li { | ||
display: inline; | ||
margin-right: 10px; | ||
} | ||
|
||
.links-container ul li:last-child { | ||
margin-right: 0; | ||
} | ||
</style> | ||
<div class="links-container"> | ||
<h5>Eclipse Foundation</h5> | ||
<ul> | ||
<li><a href="http://www.eclipse.org">Website</a></li> | ||
<li><a href="http://www.eclipse.org/legal/privacy.php">Privacy policy</a></li> | ||
<li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li> | ||
<li><a href="http://www.eclipse.org/legal/copyright.php">Copyright agent</a></li> | ||
<li><a href="http://www.eclipse.org/legal">Legal</a></li> | ||
</ul> | ||
</div> |