forked from Maxluli/TinderPokemon
Added new pages yipi...
This commit is contained in:
42
favorites.html
Normal file
42
favorites.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.5/dist/umd/popper.min.js"
|
||||
integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk"
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.min.js"
|
||||
integrity="sha384-ODmDIVzN+pFdexxHEHFBQH3/9/vQ9uori45z4JjnFsRydbmQbmL5t1tQ0culUzyK"
|
||||
crossorigin="anonymous"></script>
|
||||
|
||||
<title>Tinder Pokemon</title>
|
||||
<link rel="icon" type="image/x-icon" href="assets/img/Icon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<div class="d-grid gap-2 text-center">
|
||||
<div class=""><h1>Tinder for weird furries</h1></div>
|
||||
<div class=""><h2>Favorites</h2></div>
|
||||
</div>
|
||||
|
||||
<p>Somebody will have to display the favorites or something here</p>
|
||||
|
||||
<div class="row fixed-bottom">
|
||||
<div class="btn col-4">
|
||||
<a href="likes.html"><h3>Liked</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4">
|
||||
<a href="index.html"><h3>Home</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4">
|
||||
<a href="favorites.html"><h3>Favorites</h3></a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
27
index.html
27
index.html
@@ -17,17 +17,14 @@
|
||||
integrity="sha384-ODmDIVzN+pFdexxHEHFBQH3/9/vQ9uori45z4JjnFsRydbmQbmL5t1tQ0culUzyK"
|
||||
crossorigin="anonymous"></script>
|
||||
|
||||
<title>Tinder Pokemon title</title>
|
||||
<title>Tinder Pokemon</title>
|
||||
<link rel="icon" type="image/x-icon" href="assets/img/Icon.ico">
|
||||
</head>
|
||||
|
||||
<body style="height:100vh d-flex align-items-center mb-3">
|
||||
<div class="container" >
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand text-center" href="#">The worst furry tinder</a>
|
||||
</div>
|
||||
</nav>
|
||||
<body>
|
||||
<div class="d-grid gap-2 text-center">
|
||||
<div class=""><h1>Tinder for weird furries</h1></div>
|
||||
<div class=""><h2>Home</h2></div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="card p-2" style="">
|
||||
@@ -55,15 +52,15 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row fixed-bottom" style="">
|
||||
<div class="btn col-4" style="">
|
||||
<p>Liked</p>
|
||||
<div class="row fixed-bottom">
|
||||
<div class="btn col-4">
|
||||
<a href="likes.html"><h3>Liked</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4" style="">
|
||||
<p class="align-middle">Home</p>
|
||||
<div class="btn col-4">
|
||||
<a href="index.html"><h3>Home</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4" style="">
|
||||
<p class="align-middle">Favorites</p>
|
||||
<div class="btn col-4">
|
||||
<a href="favorites.html"><h3>Favorites</h3></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
43
likes.html
Normal file
43
likes.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.5/dist/umd/popper.min.js"
|
||||
integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk"
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.min.js"
|
||||
integrity="sha384-ODmDIVzN+pFdexxHEHFBQH3/9/vQ9uori45z4JjnFsRydbmQbmL5t1tQ0culUzyK"
|
||||
crossorigin="anonymous"></script>
|
||||
|
||||
<title>Tinder Pokemon title</title>
|
||||
<link rel="icon" type="image/x-icon" href="assets/img/Icon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<div class="d-grid gap-2 text-center">
|
||||
<div class=""><h1>Tinder for weird furries</h1></div>
|
||||
<div class=""><h2>Likes</h2></div>
|
||||
</div>
|
||||
|
||||
<p>Someone will have to put the liked profile here or something</p>
|
||||
<p>Definitely not me</p>
|
||||
|
||||
<div class="row fixed-bottom">
|
||||
<div class="btn col-4">
|
||||
<a href="likes.html"><h3>Liked</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4">
|
||||
<a href="index.html"><h3>Home</h3></a>
|
||||
</div>
|
||||
<div class="btn col-4">
|
||||
<a href="favorites.html"><h3>Favorites</h3></a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user