Skip to content

Instantly share code, notes, and snippets.

@Iheanacho-ai
Created June 25, 2022 15:24
Show Gist options
  • Save Iheanacho-ai/7d4178284b85dd9f9008412a62769e36 to your computer and use it in GitHub Desktop.
Save Iheanacho-ai/7d4178284b85dd9f9008412a62769e36 to your computer and use it in GitHub Desktop.
<template>
<div class="home">
<div class="title-container">
<h2>Orange Music</h2>
<p>Input your email address to get updates when we launch!</p>
<input
type="text"
/>
<button type="button">Add email address</button>
</div>
</div>
</template>
<style>
body{
margin: 0;
padding: 0;
}
.home{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-image: url('https://res.cloudinary.com/amarachi-2812/image/upload/v1649445450/music-banner_zveuix.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.title-container h2{
color: #fff;
font-size: 32px;
}
.title-container p{
color: rgba(255, 255, 255, 0.815);
font-size: 18px;
}
.title-container input{
outline: none;
height: 30px;
width: 250px;
}
.title-container button{
height: 35px;
background-color: #111;
color: #fff;
border: 1px solid #111;
cursor: pointer;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment