-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.html
47 lines (44 loc) · 1.37 KB
/
mobile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gammos</title>
<link rel="stylesheet" type="text/css" href="mobile.css">
<link rel="icon" type="image/png" href="assets/logo_cropped.png">
</head>
<script>
if(window.innerWidth > 1280){
window.location = "home.html"
}
window.addEventListener('resize', function(event) {
if(window.innerWidth > 1280){
window.location = "home.html"
}
}, true);
</script>
<header>
<div class="header">
<div class="logo">
<img id="logo_png" src="assets/logo.png" height="55px">
<div class="buttons">
<div class="dropdown">
<!-- <button class="dropbtn"><img id="logo_png" src="assets/menu.png" height="55px"></button> -->
<div class="dropdown-content">
<a href="index.html">Home</a>
<a href="projects_mobile.html">Projects</a>
<a href="#">About</a>
</div>
</div>
</div>
</div>
</div>
</header>
<body>
<br>
<div class="headline">
<h1>Mobile Version Coming Soon...</h1>
</div>
</body>
</html>