Skip to content
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
7 changes: 6 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/*wait why is this empty? */
/*wait why is this empty? */

.dog{
width: 80px;
padding-top: 40px;
}
Binary file added assets/images/kawaii-unicorn-3840x2160-10605.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 assets/images/pexels-photo-585752.jpeg
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 assets/images/puppy-1.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 assets/images/wp2141436.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 24 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,34 @@
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />



<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- Responsive navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#!">Your Name Here</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#!">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#!">About</a></li>
<li class="nav-item"><a class="nav-link" href="#!">Contact</a></li>
</ul>
</div>
</div>
</nav>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link disabled" aria-current="page disabled">Lemlem</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">Home</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">About</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">Contact</a>
</li>
</ul>

</div>
</div>
</div>
</nav>
<!-- Header - set the background image for the header in the line below-->
<header class="py-1 bg-image-full" style="background-image: url('https://t4.ftcdn.net/jpg/03/61/82/93/360_F_361829357_WuN8yt1I8PEYSnx8P6IvfYLlRZZWW2ts.jpg')">
<header class="py-1 bg-image-full" style="background-image: url('./assets/images/wp2141436.jpeg')">
<div class="text-center my-1">
<img class="img-fluid rounded-circle mb-4" src="https://newmediarockstars.com/wp-content/uploads/2014/07/femcat.png" alt="..." />
<img class="img-fluid rounded-circle mb-4 dog" src="./assets/images/puppy-1.jpg" alt="dog" />
<h1 class="text-white fs-3 fw-bolder">My First Website</h1>
<p class="text-white-50 mb-0">Using Bootstrap Templates</p>
</div>
Expand All @@ -48,7 +54,7 @@ <h2>Bootstrap Makes Things Simple</h2>
</div>
</section>
<!-- Image element - set the background image for the header in the line below-->
<div class="py-1 bg-image-full" style="background-image: url('https://t4.ftcdn.net/jpg/03/61/82/93/360_F_361829336_GWe1wR8L92MnIKcCIyrwaZQp0rG36XJC.jpg')">
<div class="py-1 bg-image-full" style="background-image: url('./assets/images/kawaii-unicorn-3840x2160-10605.png')">
<!-- Put anything you want here! The spacer below with inline CSS is just for demo purposes!-->
<div style="height: 20rem"></div>
</div>
Expand Down