Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
Create buttons-example.html
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir-daniel authored Oct 26, 2024
1 parent ac1acb2 commit d06a7a8
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions brand/buttons-example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eartho Login Buttons</title>
</head>
<body>

<h1>Eartho Login Buttons</h1>

<!-- Version 1: Simple Button with Text -->
<h3>Simple Button with Text</h3>
<button style="background-color: #1976D2; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer;">
Sign in with Eartho
</button>

<br><br>

<!-- Version 2: Button with Icon and Text -->
<h3>Button with Icon and Text</h3>
<button style="background-color: #1976D2; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; display: flex; align-items: center;">
<img src="https://github.com/eartho-group/media/blob/main/icon.png" alt="Eartho Icon" width="20px" style="margin-right: 10px;">
Sign in with Eartho
</button>

<br><br>

<!-- Version 3: Rounded Button with Shadow -->
<h3>Rounded Button with Shadow</h3>
<button style="background-color: #1976D2; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 25px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);">
Sign in with Eartho
</button>

<br><br>

<!-- Version 4: Button with Hover Effect -->
<h3>Button with Hover Effect</h3>
<button style="background-color: #1976D2; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer;" onmouseover="this.style.backgroundColor='#165a9e'" onmouseout="this.style.backgroundColor='#1976D2'">
Sign in with Eartho
</button>

<br><br>

<!-- Version 5: Button with Icon, Rounded Corners, and Hover Effect -->
<h3>Button with Icon, Rounded Corners, and Hover Effect</h3>
<button style="background-color: #1976D2; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; display: flex; align-items: center; border-radius: 25px;" onmouseover="this.style.backgroundColor='#165a9e'" onmouseout="this.style.backgroundColor='#1976D2'">
<img src="https://github.com/eartho-group/media/blob/main/icon.png" alt="Eartho Icon" width="20px" style="margin-right: 10px;">
Sign in with Eartho
</button>

</body>
</html>

0 comments on commit d06a7a8

Please sign in to comment.