Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# test-repo
TEST REPOSITORY
print("Hello")
62 changes: 62 additions & 0 deletions docs/first.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@

<html>
<head>
<title>WANDER</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<h1 style="text-align:center;">Let's Travel</h1>

<p></p>


<ul class="nav">
<li class="nav-item">
<a class="nav-link active" href="#">Search a destination</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://unsplash.com/photos/pNEmlb1CMZM/download?force=true">Download</a>
</li>

</ul>

<div id="carouselExampleFade" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://images.unsplash.com/photo-1491497895121-1334fc14d8c9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1527549993586-dff825b37782?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1587628091445-779b9c0c0a6a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleFade" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleFade" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>

<div class="card" style="width: 18rem;">
<img src="https://images.unsplash.com/photo-1521295121783-8a321d551ad2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80" class="card-img-top" alt="...">
<div class="card-body">

<p class="card-text">Let's Travel</p>
<a href="https://www.bykojourneys.com/" class="btn btn-primary">Go somewhere</a>
</div>
</div>








</body>
</html>
15 changes: 15 additions & 0 deletions docs/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
body {
background-color: rgb(204, 168, 168);
opacity: 0.9;
}

h1 {
color: rgb(20, 3, 3);
text-align: center;
}

p {
text-align: center;
font-family: verdana;
font-size: 20px;
}
5 changes: 5 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
print("Hello")

def main():
print("From main function")