Skip to content

Instantly share code, notes, and snippets.

View marconvcm's full-sized avatar

Marcos Vinicius Marcon marconvcm

View GitHub Profile
for (var i = Things.length - 1; i >= 0; i--) {
Things[i]
};
<!doctype html>
<html>
<head>
<title>Blank Web App</title>
</head>
<body>
<table border="1">
<tr>
<td><h1>Blank Web App</h1></td>
</tr>
@marconvcm
marconvcm / index5.html
Created March 17, 2012 14:38
index5.html
<!doctype html>
<html>
<head>
<title>Blank Web App</title>
</head>
<body>
<table border="1">
<tr>
<td><h1>Blank Web App</h1></td>
</tr>
@marconvcm
marconvcm / index6.html
Created March 17, 2012 14:39
index6.html
<!doctype html>
<html>
<head>
<title>Blank Web App</title>
</head>
<body>
<table border="1">
<tr>
<td><h1>Blank Web App</h1></td>
</tr>
@marconvcm
marconvcm / index6.html
Created March 17, 2012 16:59
ex_forms
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
</head>
<body>
<form action="" method="POST">
<table>
<tr>
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
</head>
<body>
<form action="" method="POST">
<table>
<tr>
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<!--
Seleção CSS
# -> seleciona todos os elementos pelo id
. -> seleciona todos os elementos pela class
nome do elemento html -> Seleciona todos os elementos daquele tipo
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title> Rede Social </title>
<style type="text/css">
*{
font-family: Segoe UI, sans-serif;
margin:0;
}
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title> Rede Social </title>
<style type="text/css">
*{
font-family: Segoe UI, sans-serif;
margin:0;
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title> Hello World JS</title>
<script type="text/javascript">
function get(id){
return document.getElementById(id);
}