-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (65 loc) · 2.21 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
<!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" />
<link rel="stylesheet" href="./css/CSSGrid.css" />
<link
href="https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Hurricane&display=swap"
rel="stylesheet"
/>
<title>Ethical Coding | Home</title>
</head>
<body>
<!--GRID PARENT-->
<div class="container">
<!--GRID CHILD: HEADER > H1 + NAVBAR + SEARCH FIELD-->
<header class="container-header">
<h1><a href="index.html">ETHICAL CODING CONSULTING</a></h1>
<div class="navbar">
<a href="index.html"
><div class="nav-button navbar-item-active">Home</div></a
>
<a href="./html/guidelines.html"
><div class="nav-button">Resources</div></a
>
<a href="./html/newsletter.html"
><div class="nav-button">Sign-up</div></a
>
<a href="./html/contact.html"
><div class="nav-button">Contact</div></a
>
</div>
<div class="search-field">
<input
type="search"
class="input-field"
placeholder="Search website ..."
/>
</div>
</header>
<!--GRID CHILD: MAIN LEFT > BACKGROUND IMAGE-->
<div class="container-main-left"></div>
<!--GRID CHILD: MAIN RIGHT > QUOTE + BUTTON-->
<div class="container-main-right">
<p>
"The power of the web is in its universality. Access by everyone
regardless of disability is an essential aspect."<br /><br />—Sir
Tim Berners-Lee (Creator of HTML)
</p>
<a href="guidelines.html"><div class="button">Learn more</div></a>
</div>
<!--GRID CHILD: FOOTER > CONTACT INFORMATION-->
<footer class="container-footer">
<p>
Copyrights © 2022 |
<a href="mailto:info@ethicalcoding.org" id="footer-links"
>info@ethicalcoding.org</a
>
| <a href="index.html" id="footer-links">ethicalcoding.org</a>
</p>
</footer>
</div>
</body>
</html>