Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adição de imagens entre outros #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion css/styles.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
body {
padding-top: 5rem;
}

.starter-template {
padding: 3rem 1.5rem;
text-align: center;
}
}

.cor-boot{
color: blue;
background-color: darkgray;
}
Binary file added images/angel.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 images/borboleta.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 images/girassol.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 images/pixel.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 images/smile.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 images/vela.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 51 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,49 @@

<title>Starter Template for Bootstrap</title>

<!-- ADD BOOTSTRAP CORE HERE!!!! -->
<!-- CSS BOOTSTRAP -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">

<!-- Custom styles for this template -->
<link href="css/styles.css" rel="stylesheet">
</head>

<body>

<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="images/vela.jpg" alt="Primeiro Slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/angel.jpg" alt="Segundo Slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/pixel.jpg" alt="Terceiro Slide">
</div>
</div>
</div>

<div class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Título do modal</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Fechar">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<p>Texto do corpo do modal, é aqui.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Fechar</button>
<button type="button" class="btn btn-primary">Salvar mudanças</button>
</div>
</div>
</div>
</div>

<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
Expand All @@ -40,28 +75,34 @@
<main role="main" class="container">

<div class="starter-template">
<h1>Bootstrap starter template</h1>
<h1 class="cor-boot">Bootstrap starter template</h1>
<p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
</div>

<!-- columns -->
<div class="row">
<div class="col-sm">
<!-- add an image here -->
One of three columns
<img src="images/smile.png" class="img-fluid">
</div>
<div class="col-sm">
<!-- add an image here -->
One of three columns
<img src="images/borboleta.jpg" class="img-fluid">
</div>
<div class="col-sm">
<!-- add an image here -->
One of three columns
<img src="images/girassol.jpg" class="img-fluid">
</div>
</div>

<!-- Add another row here -->
</main><!-- /.container -->
<div class="container">
<div class="row">
<div class="col-sm">
<p>Velas podem ajudar quando a luz acabar.</p>
</div>
<div class="col-sm">
<p>Velas podem ajudar para fechar cartas.</p>
</div>
</div>
</div>
</main>

<!-- Bootstrap core JavaScript
================================================== -->
Expand Down