Skip to content

Commit

Permalink
Update d013
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmrd committed Dec 13, 2024
1 parent 7dbe0e5 commit 982f525
Show file tree
Hide file tree
Showing 19 changed files with 112 additions and 0 deletions.
42 changes: 42 additions & 0 deletions d013/d013-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercício de Tabela</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/d013-1.css">
</head>
<body>
<h1>Exercício de Tabela</h1>
<table>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td rowspan="2">3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
<td colspan="3">8</td>
<td>9</td>
</tr>
<tr>
<td rowspan="2">10</td>
<td colspan="2">11</td>
<td>12</td>
</tr>
<tr>
<td>13</td>
<td>14</td>
<td>15</td>
</tr>
</tbody>
</table>
</body>
</html>
40 changes: 40 additions & 0 deletions d013/d013-2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercício de Tabela</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/d013-2.css">
</head>
<body>
<h1>Exercício de Tabela</h1>
<table>
<tbody>
<tr>
<td colspan="4">A</td>
<td rowspan="4">B</td>
</tr>
<tr>
<td rowspan="4">C</td>
<td>D</td>
<td>E</td>
<td>F</td>
</tr>
<tr>
<td>G</td>
<td>H</td>
<td>I</td>
</tr>
<tr>
<td>J</td>
<td>K</td>
<td>L</td>
</tr>
<tr>
<td colspan="4">M</td>
</tr>
</tbody>
</table>
</body>
</html>
Binary file added d013/favicon.ico
Binary file not shown.
Binary file added d013/imagens/frame-iphone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/fundo-madeira.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-facebook.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-instagram.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-twitter.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/logo-youtube.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-facebook.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-instagram.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-twitter.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added d013/imagens/tela-youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions d013/styles/d013-1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@charset "UTF-8";

body {
font-family: Arial, Helvetica, sans-serif;
}

table {
width: 300px;
}

table td {
border: 1px solid black;
padding: 10px;
text-align: center;
}
15 changes: 15 additions & 0 deletions d013/styles/d013-2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@charset "UTF-8";

body {
font-family: Arial, Helvetica, sans-serif;
}

table {
width: 300px;
}

table td {
border: 1px solid black;
padding: 10px;
text-align: center;
}

0 comments on commit 982f525

Please sign in to comment.