-
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
Qaiser
committed
Oct 17, 2012
0 parents
commit 4265dec
Showing
2 changed files
with
52 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,20 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
"http://www.w3.org/TR/html4/strict.dtd" | ||
> | ||
<html lang="en"> | ||
<head> | ||
<script language="javascript"> | ||
function openPopup() | ||
{ | ||
newwindow=window.open('popup.html','Unwanted action','height=300,width=300, left=450, top=300'); | ||
if (window.focus) {newwindow.focus()} | ||
return false; | ||
} | ||
</script> | ||
<title><!-- Insert your title here --></title> | ||
</head> | ||
<body style="background-color: lightblue" onload="javascript:openPopup()"> | ||
<!-- Insert your content here --> | ||
<p style="padding-top: 250px; padding-left: 100px;"><h2>Welcome to my page! Here you will see funny things</h2></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
"http://www.w3.org/TR/html4/strict.dtd" | ||
> | ||
<html lang="en"> | ||
<head> | ||
<title><!-- Insert your title here --></title> | ||
</head> | ||
<body style="background-color: lightblue"> | ||
<!-- Insert your content here --> | ||
<table width="70%" align=center> | ||
<tr> | ||
<th>No</th><th>Link</th> | ||
</tr> | ||
<tr> | ||
<td>1</td><td><a href="http://www.dsv.su.se">http://www.dsv.su.se</a></td> | ||
|
||
</tr> | ||
<tr> | ||
<td>2</td><td><a href="http://www.su.su.se">http://www.du.su.se</a></td> | ||
</tr> | ||
<tr> | ||
<td>3</td><td><a href="http://www.kth.se">http://www.kth.se</a></td> | ||
</tr> | ||
<tr> | ||
<td>4</td><td><a href="http://www.student.se">http://www.student.se</a></td> | ||
</tr> | ||
<tr> | ||
<td>5</td><td><a href="http://www.stockholm.se">http://www.stockholm.se</a></td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |