Skip to content

Tinder #1085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Tinder #1085

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
4 changes: 2 additions & 2 deletions Public/Tinder_Clone.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h2>Virat Kohli</h2>
<h2>33</h2>
</div>
<div class="pic-bio">
Indian international cricketer and former captain of the India national cricket team. He plays for Delhi in domestic cricket and Royal Challengers Bangalore in the Indian Premier League as a right-handed
Indian international cricketer and former captain of the India national cricket team. He plays for Delhi in domestic cricket and Royal Challengers Bangalore in the Indian Premier League as a right-handed spinner.
</div>
</div>

Expand Down Expand Up @@ -82,4 +82,4 @@ <h2>33</h2>


</body>
</html>
</html>
85 changes: 85 additions & 0 deletions Tinder_Clone.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../assets/css/Tinder_Clone.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>

<title>Tinder App Clone</title>
</head>
<body>

<!-- <div id="preloader"></div> -->

<nav class="navbar">

<i class="fas fa-fire"></i>
<i class="fas fa-comments"></i>
<i class="fas fa-user"></i>

</nav>


<!-- <nav class="navbar">

<i class="fas fa-fire"></i>
<i class="fas fa-comments"></i>
<i class="fas fa-user"></i>

</nav>
-->

<div class="pic-and-actions">
<div class="pic">

<div class="pic-text">
<div class="pic-name-and-age">
<h2>Virat Kohli</h2>
<h2>33</h2>
</div>
<div class="pic-bio">
Indian international cricketer and former captain of the India national cricket team. He plays for Delhi in domestic cricket and Royal Challengers Bangalore in the Indian Premier League as a right-handed spinner.
</div>
</div>

</div>

<div class="actions">
<div class="action">
<i class="fas fa-heart"></i>
</div>

<div class="action">
<i class="fas fa-star"></i>
</div>

<div class="action">
<i class="fas fa-times"></i>
</div>

</div>
</div>

<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/f9e19193d6.js"
crossorigin="anonymous"
></script>

<!--
<script>

var loader = document.getElementByID("preloader");
window.addEventListener("load",function(){
loader.style.display = "none";
})
</script>
-->


</body>
</html>