-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
56 lines (54 loc) · 2.42 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/Website image.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/chat.css">
<link rel="stylesheet" href="css/navcss/nav_contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link type="text/css" href="css/OverlayScrollbars.css" rel="stylesheet"/>
</head>
<body>
<div class="topnav">
<nav>
<a href="index">Home</a>
<a href="about">About</a>
<a href="contact">Contact</a>
<a href="requests">Requests</a>
<div class="animation start-home"></div>
</nav>
</div>
<div style="height: 10vh;"></div>
<div class="contact">
<div>
<a href="https://www.instagram.com/hezycb" target="_blank"><button id="instagram" class="instagram"><span><i class="fa fa-instagram"></span></i></button></a>
<button class="requests" id="requests"><span class="icon"><i class="fa fa-google"></span></i><span class="email">[email protected]</span></button>
<button class="number"><span class="icon"><i class="fa fa-phone"></span></i><span class="phone">435-395-8245</span></button>
</div>
</div>
<div id="chat" class="chat">
<button class="button" onclick="document.getElementById('chat').classList.toggle('closed');">Chat</button>
<div id="messages" class="messages"></div>
<input id="input" type="text" placeholder="Say something..." autocomplete="off">
</div>
<script type="text/javascript" src="./Javascript/index.js"></script>
<script type="text/javascript" src="./Javascript/constants.js"></script>
<script type="text/javascript" src="./Javascript/OverlayScrollbars.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
//The first argument are the elements to which the plugin shall be initialized
//The second argument has to be at least a empty object or a object with your desired options
OverlayScrollbars(document.querySelectorAll("body"), {
className : "os-theme-light",
resize : "both",
sizeAutoCapable : true,
paddingAbsolute : true,
scrollbars : {
clickScrolling : true
}
});
});
</script>
</body>
</html>