-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
3 changed files
with
140 additions
and
115 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 |
---|---|---|
|
@@ -7,7 +7,9 @@ | |
<title>Glyph Tools</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | ||
<link href="styles.css" rel="stylesheet"> | ||
|
||
</head> | ||
|
||
<body> | ||
|
@@ -60,7 +62,8 @@ <h2 class="h5 mb-0">Hex ↔ Emoji Converter</h2> | |
<div class="card-body"> | ||
<p class="card-text">Convert between hexadecimal values and emojis/symbols.</p> | ||
<div class="mb-3"> | ||
<button id="conversionModeButton" class="btn btn-outline-primary w-100"> | ||
<button id="conversionModeButton" | ||
class="btn btn-outline-primary w-100 conversion-mode-text"> | ||
Hex to Emoji | ||
</button> | ||
</div> | ||
|
@@ -97,12 +100,29 @@ <h2 class="h5 mb-0">Generated Glyph</h2> | |
</div> | ||
</div> | ||
|
||
<footer class="mt-5 text-center"> | ||
<p class="text-muted"> | ||
<a href="https://github.com/NhanAZ/glyph" target="_blank" class="text-decoration-none"> | ||
<i class="fab fa-github me-2"></i>Contribute on GitHub | ||
</a> | ||
</p> | ||
<footer class="container mt-5 mb-3"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-8"> | ||
<div class="d-flex justify-content-center flex-wrap gap-3"> | ||
<a href="https://github.com/NhanAZ/glyph" class="text-decoration-none text-muted" | ||
target="_blank" rel="noopener noreferrer"> | ||
<i class="fab fa-github me-2"></i>Contribute on GitHub | ||
</a> | ||
<a href="https://wiki.bedrock.dev/concepts/emojis.html" class="text-decoration-none text-muted" | ||
target="_blank" rel="noopener noreferrer"> | ||
<i class="fas fa-book me-2"></i>Emojis & Symbols Docs | ||
</a> | ||
<a href="https://discord.gg/j2X83ujT6c" class="text-decoration-none text-muted" target="_blank" | ||
rel="noopener noreferrer"> | ||
<i class="fab fa-discord me-2"></i>Join our Discord | ||
</a> | ||
<a href="https://github.com/NhanAZ" class="text-decoration-none text-muted" target="_blank" | ||
rel="noopener noreferrer"> | ||
<i class="fas fa-user me-2"></i>Author's GitHub Profile | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
|
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
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