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
79 changes: 79 additions & 0 deletions css/body.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
body {
margin: 0;
}
.headline {
color: white;
display: flex;
flex-direction: column;
height: calc(100vh - 5vh);
justify-content: center;
margin-left: 5%;
width: 50%;
}

.headline-title {
font-family: 'Quicksand', sans-serif;
font-size: 50px;
}

.element {
font-family: 'Quicksand', sans-serif;
font-size: 35px;
}
.playstore-button {
width: 200px;
}
.list-container {
margin-bottom: 40px;
}

.link-playstore {
width: 200px;
}

.social-media-super-container {
width: 300px;
display: flex;
justify-content: space-between;
margin-top: 10%;
}

.icon-link-container {
background: red;
width: 30px;
}
.icon-link-container:visited {
text-decoration: none
}

a {
text-decoration: none;
}

.circle {
align-items: center;
border: white 1px solid;
border-radius: 50%;
display: flex;
justify-content: center;
height: 50px;
text-decoration: none;
width: 50px;
}

.facebook:hover {
background: #405DE6;
}

.twitter:hover {
background: #3492C7;
}

.insta:hover {
background: #E1306C;
}

.social-icon {
color: white;
font-size: 30px;
}
Binary file added img/example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/playstore_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 52 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<meta http-equiv='X-UA-Compatible' content='ie=edge'>
<title>Document</title>
<link rel='stylesheet' href='css/body.css'>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.4.1/css/all.css' integrity='sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz' crossorigin='anonymous'>
<link href='https://fonts.googleapis.com/css?family=Quicksand:400,700' rel='stylesheet'>
</head>

<body>

<div class='background' style="background: url('img/example.jpg');background-size:cover;background-repeat: no-repeat;">
<div class='headline'>
<h2 class='headline-title'>Find your dream remote working job with the Digital Nomads App.</h2>
<ul class='list-container'>
<li class='element'>Get the latest jobs as they are posted</li>
<li class='element'>Quickly view Job Requirements and Responsibilities</li>
<li class='element'>Search by Categories for specific jobs</li>
<li class='element'>Apply for job</li>
</ul>
<a href='https://play.google.com/store/apps/details?id=io.github.alistairholmes.digitalnomadjobs' target='_blank' class='link-playstore'>
<img src='img/playstore_logo.png' alt='Get in Playstore' class='playstore-button'>
</a>

<div class='social-media-super-container'>
<div class='social-media-container'>
<a href='' class='icon-link-container' target='_blank'>
<div class='circle facebook'>
<i class='fab fa-facebook-f social-icon '></i>
</div>
</a>
</div>
<div class='social-media-container'>
<a href='' class='icon-link-container' target='_blank'>
<div class='circle twitter'>
<i class='fab fa-twitter social-icon'></i>
</div>
</a>
</div>
<div class='social-media-container'>
<a href='https://www.instagram.com/digitalnomadjobs/' class='icon-link-container' target='_blank'>
<div class='circle insta'>
<i class='fab fa-instagram social-icon'></i>
</div>
</a>
</div>
</div>

</div>
</div>
</div>
</body>
</html>

</html>