-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile_hmpg.html
More file actions
94 lines (84 loc) · 3.25 KB
/
mobile_hmpg.html
File metadata and controls
94 lines (84 loc) · 3.25 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!--
The ORIGINAL CODE is the `BRACE WEBSITE` Source Code.
The INITIAL DEVELOPER is Brace Inc., DEntisT.
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 the "License"; you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
Portions created by the Initial Developer are Copyright (c) 2022
the Initial Developer. All Rights Reserved.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="brace_logo.png" type="image/icon type">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brace™ Co.</title>
<link rel="stylesheet" href="web_style.css">
<script src="user_utils.js"></script>
<script src="main_script.js"></script>
<script src="button_sys.js"></script>
<script src="dropdown_impl.js"></script>
<script src="static.js"></script>
<script src="refresh.js"></script>
<script>
console.log("index.html (Brace Inc.): script element called.")
current_page = PAGE_BRACE_HOMEPAGE;
</script>
</head>
<body>
<div id="fade-block"></div>
<script src="fade_block.js"></script>
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<header id="page_header">
<mobile>
<img class="apply_border_radius" src="brace_tinylogo.png">
<div class="dropdown_container">
<headerbutton id="headerbutton_more2" onclick="openDropdown('headerbutton_more2','mydropdown2')">SELECT PAGE ↓</headerbutton>
<div class="dropdown" id="mydropdown2">
<headerbutton onclick="openModal('ContactInfo')">CONTACT</headerbutton>
<headerbutton id="headerbutton_refresh" onclick="brace_redirect(BRACE_LINK__HOMEPAGE)">↻ REFRESH</headerbutton>
</div>
</div>
<div class="dropdown_container">
<headerbutton id="headerbutton_more" onclick="openDropdown('headerbutton_more','mydropdown')">PRODUCTS ↓</headerbutton>
<div class="dropdown" id="mydropdown">
<headerbutton onclick="brace_redirect(BRACE_LINK__PAWNSCRIPT)">PawnScript</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__DAMNLARPER)">Damn Larper</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__NEWASM)">New-ASM</headerbutton>
</div>
</div>
<div id="ContactInfo" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Contact Mail</h2>
<p>Contact us via mail at <code>bracetm.official@gmail.com</code>.</p>
</div>
</div>
</mobile>
</header>
<!-- ------------------- -->
<!-- PAGE -->
<!-- ------------------- -->
<section id="home">
<h1 class="home_text">Welcome to <code>Brace™ Co.</code>Mobile!</h1>
<p class="home_text">This is our <code>beta</code> website designed for mobile devices!</p>
</section>
<!-- ------------------- -->
<!-- FOOTER -->
<!-- ------------------- -->
<footer id="website-footer">
</footer>
<div id="contact-info-bajo"></div>
<script src="popup_impl.js"></script>
</body>
</html>
<script src="footer.js"></script>