This is only test.
Here is the second level text.
| *{ | |
| font-family:'Glegoo', Arial, Verdana, sans-serif; | |
| text-transform:uppercase; | |
| font-size:96%; | |
| } | |
| body{ | |
| background:#666; | |
| } |
| /* Welcome to IE Hacks, by Marcker */ | |
| *{ | |
| *font-size:12px !important; | |
| } | |
| ul{ | |
| *margin-left:0 !important; | |
| *width:175px !important; | |
| } |
| window.onload = function() { | |
| var palavra1, | |
| palavra2, | |
| palavra3, | |
| x, | |
| y, | |
| p, | |
| frase, | |
| resultado; |
| window.setInterval(function() { | |
| var parametros = 'height=200, width=800, status=yes, toolbar=no, menubar=no, location=no'; | |
| var url = 'http://marcker.tumblr.com'; | |
| window.open(url, null, parametros); | |
| }, 10000); |
| \documentclass[12pt]{article} | |
| \usepackage[utf8]{inputenc} | |
| \usepackage[brazilian]{babel} | |
| \pagestyle{headings} | |
| \pagenumbering{arabic} | |
| \begin{document} | |
| \title{ Pensamentos } | |
| \author{ por Marcos Garcia } |
| function criar_menu() { | |
| var div, arr_nomes, i, li; | |
| arr_nomes = ['Marcos', 'Anderson', 'Lucas', 'Meire', 'Gustavo', 'Juliana'].sort(); | |
| li = []; | |
| div = document.getElementById('menu'); | |
| for (i = 0; i < arr_nomes.length; i += 1) { | |
| li[i] = document.createElement('li'); | |
| li[i].innerHTML = '<a href="' + arr_nomes[i].toLowerCase() + '.html">' + arr_nomes[i] + '</a>'; | |
| div.appendChild(li[i]); |
| ############## | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_URI} !^(.*)\.(.*)$ | |
| RewriteRule ^(.*)$ %{REQUEST_URI}.php [R] | |
| ############# | |
| RewriteEngine on | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME}\.php -f |
| <!DOCTYPE html> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <link rel="stylesheet" href="css/mobile.css" /> | |
| <script src="js/jquery-1.7.1.js"> </script> | |
| <script src="js/jq-mobile.js"></script> | |
| <title></title> | |
| </head> |