Created
September 6, 2011 01:37
-
-
Save readevalprint/1196341 to your computer and use it in GitHub Desktop.
anya's page
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> anyas page </title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script> | |
$(function(){ | |
$("a").click(function(){ | |
alert("clicked"); | |
return false; | |
}) | |
}) | |
</script> | |
<style> | |
a { | |
color: orange | |
} | |
</style> | |
</head> | |
<body> | |
<h1>hi world</h1> | |
<image src="http://2.bp.blogspot.com/-5B3ZF_q8To0/ThPjN-DtjUI/AAAAAAAAA6g/TRtbttw_090/s1600/IMAG0019.jpg" width=100> | |
hello word | |
my name is <a href="#" >anya</a> <strong> i love tim </strong> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment