Browse Source

commit inicial

master
andre 3 years ago
commit
4336ba2658
5 changed files with 61 additions and 0 deletions
  1. +1
    -0
      formulario/iframe.html
  2. +18
    -0
      formulario/index.html
  3. +35
    -0
      index.html
  4. +7
    -0
      teste/index.html
  5. BIN
      vini.jpg

+ 1
- 0
formulario/iframe.html View File

@ -0,0 +1 @@
<html><h1>Pagina Iframe</h1></html>

+ 18
- 0
formulario/index.html View File

@ -0,0 +1,18 @@
<html>
<head>
<meta charset="utf-8"/>
<title>Meu formulário</title>
</head>
<body>
<h1>Formulário</h1>
<form>
<div>
<label>Nome:</label>
<input type="text" name="nome" />
</div>
<button>Enviar</button>
</form>
<iframe src="iframe.html"></iframe>
<a href="iframe.html">Link para iframe</a>
</body>
</html>

+ 35
- 0
index.html View File

@ -0,0 +1,35 @@
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<table border="1">
<thead>
<tr>
<th>Nome</th>
<th>Idade</th>
</tr>
</thead>
<tbody>
<tr>
<td>
André Ray
</td>
<td>
20 anos
</td>
</tr>
</tbody>
</table>
<div>
<h1>Meu primeiro site no vim</h1>
<p>
Estou construindo esse site pelo editor vim dentro do
terminal linux através do putty
</p>
<img src="vini.jpg" />
<a href="teste/">Vá para a outra página</a>
</div>
</body>
</html>

+ 7
- 0
teste/index.html View File

@ -0,0 +1,7 @@
<html>
<head>
<meta charset="utf-8">
</head>
<h1>Outra página</h1>
</html>

BIN
vini.jpg View File

Before After

Loading…
Cancel
Save