-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·93 lines (80 loc) · 4.15 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Home | McTrees</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://api.mctrees.net/analytics.js"></script>
<script>
ga('send', 'pageview');
</script>
<?php include "includes/styles.html"?>
<script src="/lib/scroll.js"></script>
<script src="/lib/w3.js"></script>
<!---cookie script-->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="https://mctrees.net/lib/cookie.js"></script>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function NavBar() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<script>
function loaderfunction() {
document.getElementById("menupagename").innerHTML = document.title.slice(0, -9);
document.getElementById(window.location.pathname + "").classList.add('w3-white');
document.getElementById(window.location.pathname + "small").classList.add('w3-grey');
document.getElementById(window.location.pathname + "small").classList.remove('w3-white');
}
</script>
</head>
<body onload="loaderfunction();">
<!-- Navbar -->
<?php include 'includes/menu.html';?>
<!-- Header -->
<header class="w3-container w3-blue w3-center" style="padding:128px 16px">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1 class="w3-margin w3-jumbo">McTrees</h1>
<p class="w3-xlarge">Offical Website</p> <button class="w3-button w3-black w3-padding-large w3-large w3-margin-top" onclick="EPPZScrollTo.scrollVerticalToElementById('about', 90);">About</button>
</header>
<!-- First Grid -->
<div class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content" id="about">
<div class="w3-twothird">
<h1>About us</h1>
<h5 class="w3-padding-32">McTrees is an organization based in the North West England. We offer many services including web hosting, web development and program system design.</h5>
<p class="w3-text-grey">McTrees was first founded by Robbie in 2014. Our server was run on an old overworked laptop. We had no registered domain and no proper network infrastructure. It was literally a laptop running the... <a href="/about"> Read more </a> </p>
</div>
<div class="w3-third w3-center"> <br> <img src="/images/global/logo.png"> </div>
</div>
</div>
<!-- Second Grid -->
<div class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content" id="about">
<div class="w3-third w3-center"> <br> <img src="/images/page/hosting/web_hosting.png"> </div>
<div class="w3-twothird">
<h1>What we do?</h1>
<h5 class="w3-padding-32">At McTrees we offer dedicated reliable <b>hosting solutions</b>, <b>web design</b> and <b>programming and design</b></h5>
<p class="w3-text-grey">To find out more about our <b>web design</b>, <b>hosting</b> and <b>programing</b> work, as well as how to get us to work on your next project, click <a href="/hosting/">here</a>.</p>
</div>
</div>
</div>
<!-- First Grid -->
<div class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Contact</h1>
<h5 class="w3-padding-32">find out how to contact us directly from our <a href="/contact/">Contact page </a> </h5>
</div>
<div class="w3-third w3-center"> <br><br><br> <img src="images/page/contact/email.png"> </div>
</div>
</div>
<?php include "./includes/footer.html"?>
</body>
</html>