Skip to content

Instantly share code, notes, and snippets.

@gupta-shrinath
Created January 27, 2022 06:04
Show Gist options
  • Save gupta-shrinath/6194e225375170d153bfa2c30727c862 to your computer and use it in GitHub Desktop.
Save gupta-shrinath/6194e225375170d153bfa2c30727c862 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.btn-twitter {
background-color: DodgerBlue;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
border-radius:5px;
cursor: pointer;
}
.btn-gmail {
background-color: Red;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
border-radius:5px;
cursor: pointer;
}
.btn-notion {
background-color: Black;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
border-radius:5px;
cursor: pointer;
}
</style>
</head>
<body>
<button class="btn-twitter">Twitter <i class="fa fa-close"></i> </button>
<button class="btn-gmail">Gmail <i class="fa fa-close"></i> </button>
<button class="btn-notion">Notion <i class="fa fa-close"></i> </button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment