-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (142 loc) · 5.52 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adelphi Oracle Dev - AI Template Marketplace</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">Adelphi Oracle Dev</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#templates">Templates</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to Adelphi Oracle Dev</h1>
<p>Discover our cutting-edge AI website templates</p>
</section>
<section id="templates">
<h2>Our Templates</h2>
<div class="template-grid">
<!-- We'll add template items here -->
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>We specialize in creating high-quality, AI-focused website templates for businesses of all sizes.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Adelphi Oracle Dev. All rights reserved.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>body>
<!-- Keep any existing header or navigation you might have -->
<main>
<!-- Your existing content goes here -->
<!-- Add this new section for templates -->
<section id="templates">
<h2>Our Templates</h2>
<div class="template-grid">
<div class="template-item">
<img src="images/ai-startup-template.jpg" alt="AI Startup Template">
<h3>AI Startup Landing Page</h3>
<p>Perfect for new AI ventures</p>
<a href="templates/ai-startup-landing.html" class="btn">View Template</a>
</div>
<!-- Repeat this structure for each of your templates -->
</div>
</section>
<!-- Keep any other existing sections you want to retain -->
</main>
<!-- Keep your existing footer if you have one -->
<!-- Make sure you have your JavaScript file linked -->
<script src="js/main.js"></script>
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Business Solutions</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="images/logo.svg" alt="AI Business Logo">
</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="hero">
<h1>Revolutionize Your Business with AI</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris.</p>
<a href="#services" class="cta-button">Explore Our Solutions</a>
</section>
<section id="services">
<h2>Our AI Services</h2>
<div class="service-grid">
<div class="service-card">
<img src="images/service-icons/machine-learning.svg" alt="Machine Learning">
<h3>Machine Learning</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="service-card">
<img src="images/service-icons/nlp.svg" alt="Natural Language Processing">
<h3>Natural Language Processing</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="service-card">
<img src="images/service-icons/computer-vision.svg" alt="Computer Vision">
<h3>Computer Vision</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2024 AI Business Solutions. All rights reserved.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>