-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomingsoon.html
More file actions
58 lines (56 loc) · 1.78 KB
/
Copy pathcomingsoon.html
File metadata and controls
58 lines (56 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<!-- Created by James C. Page -->
<head>
<meta charset="utf-8">
<title>UI Project Wk - Home</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<script src="js/nav-menu.js" async></script>
<script src="js/coming-soon-clock.js" async></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header class="nav-header">
<div class="nav-bar">
<div class="container nav-bar-items">
<div class="company-logo">
<h3>S&J</h3>
</div>
<div class="menu-button">
<img class="nav-header-button-open" src="img/nav-hamburger.png">
<img class="nav-header-button-close hide" src="img/nav-hamburger-close.png">
</div>
</div>
</div>
<div class="nav-dropdown-container hide">
<nav class="nav-dropdown-items">
<a class="items-bar" href="index.html" alt="Services-page">
<div class="items-container">
<h1>Home</h1>
</div>
</a>
<a class="items-bar" href="services.html" alt="Services-page">
<div class="items-container">
<h1>Services</h1>
</div>
</a>
<a class="items-bar" href="contact.html" alt="Services-page">
<div class="items-container">
<h1>Contact</h1>
</div>
</a>
</nav>
</div>
</header> <!-- (nav-header) -->
<div class="coming-soon">
<div class="notice">
<h1>COMING SOON</h1>
<hr>
<p class="countdown-clock"></p>
</div>
</div>
</body>
</html>