-
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.
Great work, me!
- Loading branch information
Showing
10 changed files
with
461 additions
and
37 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
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
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,58 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>2-in-1 Water Foiler</title> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | ||
<link href="https://the-bruno-store.github.io/v1.1.0/favicon.ico" rel="icon" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<nav id="navbar-example" class="navbar navbar-light bg-light px-3 sticky-top" data-bs-offset="0"> | ||
<h1><a class="navbar-brand" href="#">The Bruno Store</a></h1> | ||
<ul class="nav nav-pills"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="https://brunozhon.github.io">Bruno Zhong's Website</a> | ||
</li> | ||
<!-- | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Dropdown</a> | ||
<ul class="dropdown-menu"> | ||
<li><a class="dropdown-item" href="#the-history-of-my-website-2841">The History of My Website</a></li> | ||
<li><a class="dropdown-item" href="#resources-0213">Resources</a></li> | ||
</ul> | ||
</li> | ||
--> | ||
<li class="nav-item"> | ||
<form class="d-flex"> | ||
<input class="form-control me-2" type="search" placeholder="Search my website..." aria-label="Search" name="search_query"> | ||
<button class="btn btn-outline-success" type="submit">Search</button> | ||
</form> | ||
</li> | ||
</ul> | ||
</nav> | ||
<audio controls loop> | ||
<source src="https://the-bruno-store.github.io/v1.1.0/The%20Bruno%20Store.wav"> | ||
<source src="https://the-bruno-store.github.io/v1.1.0/The%20Bruno%20Store.aiff"> | ||
The Song cannot be played. | ||
</audio> | ||
<h1>2-in-1 Water <b>F</b><u>oiler</u> (<b>F</b>ilter & B<u>oiler</u>)</h1> | ||
<p>Cost: <span id="cost"></span></p> | ||
<a href="https://the-bruno-store.github.io/cart.html">Check Out</a> | ||
<script> | ||
var params = new URLSearchParams(location.search) | ||
var a = document.querySelectorAll("a")[2] | ||
var cost = document.getElementById("cost") | ||
if (params.get("size") == "1") { | ||
cost.innerHTML = "$10.00" | ||
a.href = "https://the-bruno-store.github.io/v1.1.0/cart.html?cart=foiler-1" | ||
} else if (params.get("size") == "3") { | ||
cost.innerHTML = "$30.00" | ||
a.href = "https://the-bruno-store.github.io/v1.1.0/cart.html?cart=foiler-3" | ||
} else { | ||
cost.innerHTML = "There was an error getting the data, so you should panic." | ||
} | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
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,38 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Acetone-Free Nail Polish Remover</title> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | ||
<link href="https://the-bruno-store.github.io/v1.1.0/favicon.ico" rel="icon" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<audio controls loop> | ||
<source src="https://the-bruno-store.github.io/v1.1.0/The%20Bruno%20Store.wav"> | ||
<source src="https://the-bruno-store.github.io/v1.1.0/The%20Bruno%20Store.aiff"> | ||
The Song cannot be played. | ||
</audio> | ||
<h1>Acetone-Free Nail Polish Remover</h1> | ||
<p>Cost: <span id="cost"></span></p> | ||
<a href="https://the-bruno-store.github.io/v1.1.0/cart.html">Check Out</a> | ||
<script> | ||
var params = new URLSearchParams(location.search) | ||
var a = document.querySelectorAll("a")[2] | ||
var cost = document.getElementById("cost") | ||
if (params.get("size") == "1") { | ||
cost.innerHTML = "$1" | ||
a.href = "https://the-bruno-store.github.io/v1.1.0/cart.html?cart=afnpr-small" | ||
} else if (params.get("size") == "2") { | ||
cost.innerHTML = "$7.50" | ||
a.href = "https://the-bruno-store.github.io/v1.1.0/cart.html?cart=afnpr-medium" | ||
} else if (params.get("size") == "3") { | ||
cost.innerHTML = "$15" | ||
a.href = "https://the-bruno-store.github.io/v1.1.0/cart.html?cart=afnpr-large" | ||
} else { | ||
cost.innerHTML = "There was an error getting the data, so you should panic." | ||
} | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.