-
Notifications
You must be signed in to change notification settings - Fork 0
/
Detalhe_do_Repositório_4.html
78 lines (66 loc) · 3.94 KB
/
Detalhe_do_Repositório_4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trabalho Prático 1</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body class="mx-auto">
<header>
<a class="fs-2" href="index.html">Porco Espinho</a>
<nav>
<input type="checkbox" id="menuToggle">
<label for="menuToggle" class="menu-icon">
<i class="fa fa-bars"></i>
<i class="fa fa-times-circle"></i>
</label>
<ul class="menu">
<li><a class="fs-2" href="#">Seção 1</a></li>
<li><a class="fs-2" href="#">Seção 2</a></li>
<li><a class="fs-2" href="#">Seção 3</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="linha mt-3">Introdução ao Bootstrap</h1>
<h5 class="text-primary mt-3">Descrição</h5>
<p>O Bootstrap é um dos frameworks de design de interface do usuário mais populares para desenvolvimento web. Ele foi originalmente criado por desenvolvedores do Twitter e agora é mantido como um projeto de código aberto. Segue o Repositório de uma atividade da PUC sobre como utilizar o Bootstrap e facilitar as linguagens HTML e CSS</p>
<div id="container2" class="container-fluid">
<div class="row">
<h5 class="text-primary mt-3 col-8">Data de Criação</h5> <svg class="seguidor2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="#003185" d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"/></svg> <span class="text-primary col-2 mt-1 fs-5"> 20 </span>
</div>
<div class="row">
<p class="col-10">2024-04-09</p>
</div>
<div class="row">
<h5 class="text-primary mt-3 col-8 d-inline-flex">Linguagem</h5> <svg class="seguidor2 col-10" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z"/></svg><span class=" col-2 mt-2 fs-5"> 8 </span>
</div>
<div class="row">
<p class="col-11">Html e CSS</p>
</div>
<div class="row">
<h5 class="text-primary mt-3 col-4">Link de Acesso</h5>
</div>
<div class="row">
<p class="col-10"><a href="#">https://github.com/IntroduçãoaoBootstrap</a></p>
</div>
<div class="row">
<h5 class="text-primary mt-3 col-4">Tópicos</h5>
</div>
<div class="row">
<p class="text-light d-inline-flex me-2 col-3 col-xxl-1 col-xl-1 col-lg-2">Html</p>
<p class="text-light d-inline-flex me-2 col-3 col-xxl-1 col-xl-1 col-lg-2">CSS</p>
<p class="text-light d-inline-flex me-2 col-3 col-xxl-1 col-xl-1 col-lg-2">Bootstrap</p>
<p class="text-light d-inline-flex me-2 col-3 col-xxl-1 col-xl-1 col-lg-2">Web</p>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/20b6a60beb.js" crossorigin="anonymous"></script>
</body>
</html>