-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (68 loc) · 4.22 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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head><link rel="stylesheet" href="normalize.css">
<title>Jake & Elwood</title>
<!-- viewport meta to render pages on mobile properly -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link to google fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<!-- https://cdnjs.com/libraries/font-awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css" rel="stylesheet">
<!-- link to my CSS -->
<link href="css/style.css" rel="stylesheet">
<meta property='og:title' content="Title of the article">
<meta property="og:image" content="./img/hero-bg.jpg">
</head>
<body>
<header class="header header-home main-grid">
<div class="header-content">
<a class="logo-link" href="index.html">
<img src="./img/logo.png" alt="" class="logo">
</a>
<button aria-label="Open navigation" class="open-nav">☰</button>
<nav class="nav">
<button aria-label="Close navigation" class="close-nav">×</button>
<ul class="nav-list">
<li class="nav-item"><a href="index.html" class="nav-link current">home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">about us</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero main-grid">
<h1 class="hero-title">The only marketing agency on <span class="accent-color">a mission from God</span>, fully dedicated to increase your web traffic. </h1>
<p class="hero-subtitle">We’re two brothers from Chicago that are trying to pay back our debt. We can help you with <strong>SEO, SEM content marketing</strong> and whatever else.</p>
<a href="index.html" class="btn btn-primary">contact</a>
</section>
<section class="info main-grid">
<div class="col">
<h2 class="section-title section-title-center">About Us</h2>
<p>We grew up in downtown Chicago, and we used to play in a band. <strong>Jake loves fried chicken</strong>, and <strong>Elwood loves dry white toast</strong>.</p>
</div>
<div class="col">
<h2 class="section-title section-title-center">Our skills</h2>
<p>Elwood is an expert in <strong>SEO, SEM, and driving from the police</strong>. Jake is our <strong>social media specialist</strong>, and he has an amazing voice.</p>
</div>
<div class="col">
<h2 class="section-title section-title-center">Get in touch</h2>
<p>Send us an email with some info about what help you need and <strong>we’ll drive over to your place</strong> in our Bluesmobile the following day to discuss the deal.</p>
</div>
</section>
</main>
<footer class="footer main-grid">
<div class="footer-main">
<img src="./img/logo.png" alt="" class="footer-logo">
<p class="footer-text">Two brothers from Chicago that are just trying to pay back their debt by helping others with their SEO, SEM, and Content Marketing needs.</p>
<p class="footer-fineprint">© Jake&Elwood 2019</p>
</div>
<ul class="social-list">
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-facebook-square"></i></a></li>
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-twitter"></i></a></li>
<li class="social-item"><a href="#" class="social-link"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>