Created
October 24, 2011 14:53
-
-
Save thiagoalves/1309226 to your computer and use it in GitHub Desktop.
Teste de Interface - HTML - Inspira
This file contains hidden or 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
<HTML> | |
<HEAD> | |
<SCRIPT SRC="assets/js/jquery-1.6.1.js"></SCRIPT> | |
<SCRIPT SRC="assets/js/main.js"></SCRIPT> | |
<SCRIPT SRC="assets/js/common.js"></SCRIPT> | |
<SCRIPT TYPE="text/javascript"> | |
$("body>ul").click(function() { | |
$(this).css("color", "red"); | |
}); | |
</SCRIPT> | |
<LINK REL="stylesheet" HREF="assets/css/home.css"> | |
<LINK REL="stylesheet" HREF="assets/css/common.css"> | |
</HEAD> | |
<BODY onload="preload()"> | |
<H1>Receita de mojito</H1> | |
<UL STYLE="list-style-type: square"> | |
<LI>1 dose de <B>Rum</B> Branco (200 ml) | |
<LI>4 limões | |
<LI>1 colher (chá) de açúcar amarelo <I>(Demerara ou Mascavo)</I> | |
<LI>Club soda | |
<LI>10 folhas de hortelã | |
</UL> | |
<CENTER> | |
<H2>Modo de preparo</H2> | |
<P><EM>Bata tudo no liquidificador (o limão com casca) e estara pronto para o consumo</P></EM> | |
</CENTER> | |
<img src="assets/img/mojito.png"> | |
</BODY> | |
</HTML> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment