-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
|
||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Buy Jailbroken iDevice</title> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> | ||
|
||
|
||
<!-- Navigation --> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<a class="navbar-brand" href="#">AirrickD's Store</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="index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Products</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Contact</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<!-- Hero Section --> | ||
<section id="hero" class="text-center"> | ||
<br> | ||
<h1>Explore Our Vast Selection Of Phones And Tablets. </h1> | ||
<p>Find The Perfect iDevice For You.</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='index.html'">Go Back</a> | ||
</section> | ||
|
||
<!-- Product Section --> | ||
<section id="products"> | ||
<div class="container"> | ||
<br> | ||
<br> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/64XS29HM06UAAAAC/apple-apple-iphone.gif" class="card-img-top" alt="Product 1"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPhone 13 Pro (Sierra Blue)</h5> | ||
<p class="card-text">Jailbroken With Roothide</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='buy.html'">Starting At $799</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/i-x64MyHSjYAAAAd/apple-apple-iphone.gif" class="card-img-top" alt="Product 2"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPhone 13 Mini (Blue And Pink)</h5> | ||
<p class="card-text">Jailbroken With Xina15</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='buy.html'">Starting At $599</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/MgPYpfEzJmIAAAAC/apple-apple-iphone11.gif" class="card-img-top" alt="Product 3"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPhone 11 (All Colors)</h5> | ||
<p class="card-text">Jailbroken With Taurine</p> | ||
<a href="#" class="btn btn-primary"onclick="location.href='buy.html'">Starting At $249</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/_w_X8MjRoFkAAAAC/phone-i-phone.gif" class="card-img-top" alt="Product 4"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPhone X (White)</h5> | ||
<p class="card-text">Jailbroken With palera1n</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='buy.html'">Starting At $179</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/QtmaKN4eOd0AAAAC/apple-apple-iphone.gif" class="card-img-top" alt="Product 4"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPhone SE 3rd Gen (All Colors)</h5> | ||
<p class="card-text">Jailbroken With Dopamine</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='buy.html'">Starting At $429</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card mb-4"> | ||
<img src="https://media.tenor.com/iCyfSOweZloAAAAC/ipad-air-apple-ipad-air.gif" class="card-img-top" alt="Product 4"> | ||
<div class="card-body"> | ||
<h5 class="card-title">iPad Air 4th Gen (All Colors)</h5> | ||
<p class="card-text">Jailbroken With unc0ver</p> | ||
<a href="#" class="btn btn-primary" onclick="location.href='buy.html'">Starting At $449</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<style> | ||
.footer { | ||
position: fixed; | ||
left: 0; | ||
bottom: 0; | ||
width: 100%; | ||
height:50px; | ||
background-color: #424c47; | ||
color: white; | ||
text-align: center; | ||
} | ||
</style> | ||
|
||
<div class="footer"> | ||
<p>Made With Love By Eric Do!</p> | ||
</div> | ||
</body> | ||
</html> |