-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
31 lines (30 loc) · 983 Bytes
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Web Design & Development Agency</title>
<meta name="description" content="Leading digital agency providing professional web design development and digital marketing services.">
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<style>
html {
background-color: #efefef;
}
#main {
text-align: center;
padding-top: 40.5vh;
font-size: 40px;
color: #636363;
}
</style>
</head>
<body>
<div class="layout">
<p id="main"></p>
</div>
<script>
var c = window.location.host;
document.title = "Web Design & Development Agency - "+ c.charAt(0).toUpperCase() + c.slice(1);
document.getElementById("main").innerHTML = c;
</script>
</body>
</html>