Skip to content

Instantly share code, notes, and snippets.

@ljanecek
Created March 1, 2024 07:52
Show Gist options
  • Save ljanecek/50bf58e57f50d144442401743dbe3038 to your computer and use it in GitHub Desktop.
Save ljanecek/50bf58e57f50d144442401743dbe3038 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Test</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap');
.btn {
font-family: Roboto, sans-serif;
font-weight: 600;
font-size: 20px;
color: #fff;
background: linear-gradient(110deg, #CA1D3A 0%, #333334 100%);
padding: 15px 40px;
border: solid #0066cc 0px;
box-shadow: none;
border-radius: 41px;
display: block;
cursor: pointer;
text-transform: uppercase;
text-align: center;
}
.btn:hover {
color: #0066cc;
border: none;
}
</style>
</head>
<body>
<h1>Test</h1>
<p>Test</p>
<a href="https://www.google.com" class="btn">Google</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment