-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
60 lines (51 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WebDev Server Study | Home</title>
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="/css/home.css">
<script src="index.js" defer></script>
</head>
<body class="container full-height-grow">
<header class="main-header">
<a href="index.html" class="brand-logo">
<img class="logo-resize" src="" alt="">
<div class="brand-logo-name">DevSite</div>
</a>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<nav class="main-nav">
<ul>
<li>
<a href="discover.html">Discover</a>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<section class="home-main-section">
<div class="img-wrapper">
<div class="device-image"></div>
</div>
<div class="call-to-action">
<h1 class="title">Web Server <span class="accent-text">Study</span></h1>
<span class="subtitle">Explore the world of web servers using node and express with DevSite.</span>
<a href="discover.html" class="btn">Discover</a>
</div>
</section>
<div class="home-page-circle-1"></div>
<div class="home-page-circle-2"></div>
<div class="home-page-circle-3"></div>
</body>
</html>