This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac1acb2
commit d06a7a8
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |