Skip to content

Instantly share code, notes, and snippets.

@readevalprint
Created September 6, 2011 01:37
Show Gist options
  • Save readevalprint/1196341 to your computer and use it in GitHub Desktop.
Save readevalprint/1196341 to your computer and use it in GitHub Desktop.
anya's page
<!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