-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (85 loc) · 3.58 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
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upsite - Elevate Your Online Presence</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Upsite delivers fast, professional, and affordable WordPress websites to elevate your business online.">
<meta name="keywords" content="WordPress, website design, digital presence, SEO, mobile-friendly">
<!-- Open Graph -->
<meta property="og:title" content="Upsite - Elevate Your Online Presence">
<meta property="og:description" content="Professional WordPress websites that drive growth for local businesses.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.upsite.com/">
<meta property="og:image" content="https://www.upsite.com/images/og-image.jpg">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Upsite - Elevate Your Online Presence">
<meta name="twitter:description" content="Professional WordPress websites that drive business growth.">
<meta name="twitter:image" content="https://www.upsite.com/images/twitter-image.jpg">
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Styles and Scripts -->
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
<!-- Font Awesome for Hamburger Icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header -->
<header>
<div class="header-container container">
<div class="logo">
<a href="index.html">Upsite</a>
</div>
<nav>
<ul id="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html" class="btn">Contact</a></li>
</ul>
<button class="hamburger" aria-label="Toggle Navigation">
<i class="fa fa-bars"></i>
</button>
</nav>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Elevate Your Online Presence</h1>
<p>Professional WordPress websites built fast and optimized for growth. Get your business online with ease and reliability.</p>
<a href="contact.html" class="cta-btn">Get a Free Consultation</a>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container features-container">
<article class="feature">
<h2>Fast & Reliable</h2>
<p>Your website stays online 24/7 with fast load times—ensuring you never miss a business opportunity.</p>
</article>
<article class="feature">
<h2>SEO & Mobile Ready</h2>
<p>Optimized for search engines and crafted to look amazing on any device, reaching customers wherever they are.</p>
</article>
<article class="feature">
<h2>Transparent Pricing</h2>
<p>Clear, upfront pricing with no hidden fees—professional design at a budget-friendly rate.</p>
</article>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="container footer-container">
<p>© 2024 Upsite. All rights reserved.</p>
</div>
</footer>
</body>
</html>