You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
614 B
HTML
26 lines
614 B
HTML
12 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>learn.cryto.net</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||
|
<script>
|
||
|
$(function(){
|
||
|
$("input").keypress(function(){
|
||
|
$(this).parent().removeClass("search-large").addClass("search-top");
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="header">
|
||
|
<h1><strong>learn.cryto.net</strong> :: Learn something new!</h1>
|
||
|
</div>
|
||
|
<div class="main">
|
||
|
<div class="search-large">
|
||
|
I want to learn about <input type="text">.
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|