-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Caffeinated | Fueling Innovation</title>
<script src="https://kit.fontawesome.com/4ad5b0d660.js" crossorigin="anonymous"></script>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="social-icons">
<a href="https://twitter.com" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
</div>
</nav>
</body>
<!-- Hero Section -->
<section class="main-section">
<div class="main-sub-section">
<div class="sub-section-content">
<div class="logo">
<a href="index.html"><img src="img/laptop-image-update-small-v1.0.jpg" alt="logo"></a>
</div>
<div class="main-section-content">
<h1>Coding Caffeinated</h1>
<p>Fueling Innovation, One Line of Code at a Time.</p>
</div>
<div class="logo-content">
<a href="portfolio.html" class="cta-btn">Portfolio</a>
</div>
</div>
</div>
<div class="map">
<aside>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d9410.817007930818!2d-105.09609979673809!3d39.602952266168685!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x876b7f0320b7c135%3A0x9e91d095d8abf737!2sStarbucks!5e0!3m2!1sen!2sus!4v1728052951979!5m2!1sen!2sus"
width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</aside>
</div>
</section>
<!-- Services Section -->
<section class="services">
<div class="services-container">
<div class="service">
<h3 class="roboto-black">Full-Stack Development</h3>
<p>Building scalable web applications from front-end to back-end.</p>
</div>
<div class="service">
<h3 class="roboto-black">Data Services</h3>
<p>High speed data access apis.</p>
</div>
<div class="service">
<h3 class="roboto-black">Legacy System Integration<h3>
<p>Blending the old and the new.</p>
</div>
</div>
</section>
<!-- Footer with Social Media Links -->
<footer>
<p>© 2024 Coding Caffeinated</p>
</footer>
</html>