Skip to content
This repository has been archived by the owner on May 15, 2022. It is now read-only.

Commit

Permalink
Criado pasta, renomeado pasta
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarcon83 committed Apr 7, 2021
1 parent dba5511 commit d2a6d81
Show file tree
Hide file tree
Showing 5 changed files with 170 additions and 0 deletions.
170 changes: 170 additions & 0 deletions Dia 49 - Bootstrap - Tabs e Botões/D49E1 - Tabs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
<meta name="Author" content="Giovanni Marcon">

<title>Tabelas Bootstrap</title>

<!-- CDN CSS Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">

<!-- CDN jQuery -->
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.slim.js"></script>

</head>

<body>
<div class="container">
<h2>Tabela 1</h2>
<table class="table table-dark table-hover">
<thead>
<tr>
<th></th>
<th>Nome</th>
<th>Sobrenome</th>
<th>Usuário</th>
<th>Senha</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>João</td>
<td>Mateus</td>
<td>johny</td>
<td>******</td>
</tr>
<tr>
<th>2</th>
<td>José</td>
<td>Silva</td>
<td>jsilva</td>
<td>******</td>
</tr>
<tr>
<th>3</th>
<td>Alan</td>
<td>Maia</td>
<td>alan_maia</td>
<td>******</td>
</tr>
<tr>
<th>4</th>
<td>Marcelo</td>
<td>Arueira</td>
<td>m.aru</td>
<td>******</td>
</tr>
</tbody>
</table>
<br>
<br>
<h2>Tabela 2A</h2>
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th></th>
<th>Nome</th>
<th>Sobrenome</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>João</td>
<td>Mateus</td>
</tr>
<tr>
<th>2</th>
<td>José</td>
<td>Silva</td>
</tr>
</tbody>
</table>
<br>
<br>
<h2>Tabela 2B</h2>
<table class="table table-borderless">
<thead class="thead-dark">
<tr>
<th></th>
<th>Nome</th>
<th>Sobrenome</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>João</td>
<td>Mateus</td>
</tr>
<tr>
<th>2</th>
<td>José</td>
<td>Silva</td>
</tr>
</tbody>
</table>
<br>
<h2>Tabela de Cores</h2>
<table class="table table-sm">
<thead>
<tr>
<th>Classe</th>
<th></th>
</tr>
</thead>
<tbody>
<tr class='table-active'>
<td>.table-active</td>
<td>exemplo</td>
</tr>
<tr class='table-primary'>
<td>.table-primary</td>
<td>exemplo</td>
</tr>
<tr class='table-secondary'>
<td>.table-secondary</td>
<td>exemplo</td>
</tr>
<tr class='table-success'>
<td>.table-success</td>
<td>exemplo</td>
</tr>
<tr class='table-info'>
<td>.table-info</td>
<td>exemplo</td>
</tr>
<tr class='table-danger'>
<td>.table-danger</td>
<td>exemplo</td>
</tr>
<tr class='table-warning'>
<td>.table-warning</td>
<td>exemplo</td>
</tr>
<tr class='table-dark'>
<td>.table-dark</td>
<td>exemplo</td>
</tr>
<tr class='table-light'>
<td>.table-light</td>
<td>exemplo</td>
</tr>
</tbody>
</table>


</div>
<!-- CDN JS Bootstrap -->
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous">
</script>
</body>

</html>

0 comments on commit d2a6d81

Please sign in to comment.