-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (74 loc) · 3.29 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A universe of ideas by one man - Author">
<title>Compass World | Author</title>
<link rel="icon" type="image/x-icon" href="contents/indexphoto/rotate.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/about.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="assets/scripts/translate.js"></script>
</head>
<body class="container-md">
<header>
<div class="container text-center">
<a href="index.html"><img class="logo" src="contents/indexphoto/logo.png" alt="logo" height="120px"></a>
</div>
<h1 class="title display-4">Welcome to a New Universe</h1>
</header>
<nav class="navbar">
<a class="navbar-brand" href="index.html">Home</a>
<a class="navbar-brand" href="files.html">Gods and Monsters</a>
<a class="navbar-brand" href="history.html">Choronology</a>
<a class="navbar-brand" href="world.html">Atlas</a>
<a class="navbar-brand" href="about.html">Author</a>
</nav>
<div class="container content-center">
<h1 class="text-center">The Mysterious Author</h1>
<div class="coin-container">
<div class="coin" id="coin">
<img src="contents/indexphoto/shadow.jpg" alt="Front Image" class="front">
<img src="contents/indexphoto/profile.jpg" alt="Back Image" class="back">
</div>
</div>
<div class="text-center">
<button class="btn btn-primary" onclick="flipCoin()">Flip to reveal</button>
<p class="name-shadow">Guy Bracha</p>
</div>
<script>
function flipCoin() {
const coin = document.getElementById('coin');
coin.classList.toggle('flip');
}
</script>
<a href="mailto:guy.bracha@gmail.com" class="btn btn-outline-warning mt-3">Business Inquiries - Press Here</a>
</div>
<footer class="text-center py-3 bg-dark text-light">
<div class="container d-flex align-items-center justify-content-between">
<!-- Left Content -->
<div>
<p class="mb-1">© 2024 Compass World. All Rights Reserved.</p>
<a href="https://github.com/guybracha/compass-world" class="text-warning fw-bold" target="_blank">
<i class="bi bi-github"></i> Source Code
</a>
</div>
<!-- Icon Image on the Right -->
<img src="contents/indexphoto/icon.png" height="80" width="auto" alt="Compass World Logo" style="filter: drop-shadow(0px 0px 10px #ffb703);">
</div>
</footer>
<!-- Google Analytics and Google Translate scripts -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1LV563TQEJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-1LV563TQEJ');
</script>
<div id="google_translate_element"></div>
</body>
</html>