Created
May 15, 2024 21:48
-
-
Save kardolus/ec735aac4dc9120831dec09eea510c21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>TapMedia</title> | |
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | |
<style> | |
.testimonial { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
margin-top: 20px; | |
} | |
.testimonial-item { | |
text-align: center; | |
margin: 0 20px; | |
} | |
.testimonial img { | |
border-radius: 50%; | |
width: 150px; | |
height: 150px; | |
object-fit: cover; | |
} | |
.quote { | |
font-style: italic; | |
margin-top: 10px; | |
} | |
</style> | |
</head> | |
<body> | |
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | |
<a class="navbar-brand" href="#">TapMedia</a> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarNav"> | |
<ul class="navbar-nav ml-auto"> | |
<li class="nav-item active"> | |
<a class="nav-link" href="#">Home</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">Services</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">Portfolio</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">Contact</a> | |
</li> | |
</ul> | |
</div> | |
</nav> | |
<header class="jumbotron text-center"> | |
<h1 class="display-4">Welcome to TapMedia</h1> | |
<p class="lead">Your go-to solution for media management and production.</p> | |
<a class="btn btn-primary btn-lg" href="#" role="button">Learn More</a> | |
</header> | |
<div class="container"> | |
<div class="testimonial"> | |
<div class="testimonial-item"> | |
<img src="https://cdn.midjourney.com/950cc669-afbc-4ddd-a741-6d2fd21b1d48/0_3.png" alt="User 1"> | |
<p class="quote">"I loved using TapMedia!"</p> | |
</div> | |
<div class="testimonial-item"> | |
<img src="https://cdn.midjourney.com/2c3fbeeb-d6d4-428b-b775-28a508928091/0_2.png" alt="User 2"> | |
<p class="quote">"TapMedia changed my life."</p> | |
</div> | |
</div> | |
</div> | |
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment