-
Notifications
You must be signed in to change notification settings - Fork 0
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
166 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta property="og:title" content="Pangram World" /> | ||
<meta property="og:description" | ||
content="Check if you have a pangram, add symbols or adjust your text to bold, italic, or even alternating caps/lower case for Facebook and other social media platforms. Additionally, enrich your science and math emails with a variety of mathematical symbols and Greek letters." /> | ||
<meta property="og:image" content="https://www.pangram-world.com/images/pangram-logo-192.png" /> | ||
<meta property="og:url" content="https://www.pangram-world.com" /> | ||
<title>Greek Lowercase</title> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="style/bootstrap.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="style/styles.css"> | ||
<link rel="stylesheet" href="style/base.css"> | ||
<link rel="stylesheet" href="style/cards.css"> | ||
<link rel="stylesheet" href="style/symbols.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="icon" type="image/x-icon" href="images/favicon.ico"> | ||
<script src="scripts/main.js" defer></script> | ||
<script src="scripts/bootstrap.bundle.js"></script> | ||
<script src="https://kit.fontawesome.com/18fe617275.js" crossorigin="anonymous"></script> | ||
|
||
<!-- Add any additional meta tags and scripts here --> | ||
</head> | ||
<body> | ||
<!-- Main content area where your page content will go --> | ||
<header id="globalHeader"></header> | ||
<main> | ||
<h2>Copy Symbols</h2> | ||
<p>Suitable to copy and paste into <i class="fab fa-facebook facebook-icon"></i></p> | ||
<small>Simply click the button of the symbol you want copied and it copies automatically then paste into your | ||
favourite social media platform.</small> | ||
|
||
<h3>Gender Symbols</h3> | ||
<section class="symbols-grid"> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="♂">♂</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Male</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="♀">♀</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Female</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="⚥">⚥</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Transgender</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="⚲">⚲</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Non-Binary</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="∅">∅</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Agender</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="⚢">⚢</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Bigender</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="⚦">⚦</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Androgynous</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="☿">☿</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Intersex</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="🚹">🚹</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Male Restroom</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="🚺">🚺</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Female Restroom</label> | ||
</div> | ||
<div class="symbol-container"> | ||
<button class="symbol-btn" data-symbol="🚻">🚻</button> | ||
<div class="copied-overlay">Copied!</div> | ||
<label>Unisex Restroom</label> | ||
</div> | ||
|
||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>© | ||
<script>document.write(new Date().getFullYear());</script> Paul Davis. All Rights Reserved. | ||
</p> | ||
<!-- Add additional footer content such as links or contact information here --> | ||
</footer> | ||
<script src="scripts/toUnicodeVariant.js"></script> | ||
<script src="scripts/symbols.js"></script> | ||
|
||
</body> | ||
</html> |