Skip to content

Commit 85926c2

Browse files
Add files via upload
1 parent 6963dd6 commit 85926c2

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
<header>
1313
<div id="header-container">
1414
<img src="images/logo.png" alt="Company Logo" id="company-logo">
15+
<label for="company-logo" id="logo-label">PA's Go-To for Solar Panel Cleaning & Maintenance!</label>
1516
</div>
1617
</header>
17-
18+
1819
<!-- Quote Form -->
1920
<section id="quote-form-section">
2021
<form id="quote-form" action="https://formspree.io/f/mqazjvne" method="POST">

styles.css

+18-5
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,31 @@ body {
77
background-color: #22293b; /* Background color */
88
}
99

10+
11+
1012
/* Header with Logo and Company Name */
1113
#header-container {
1214
display: flex;
15+
flex-direction: column; /* Stack the logo and label vertically */
1316
align-items: center;
14-
justify-content: center;
1517
padding: 18px; /* Padding */
1618
background-color: #22293b; /* Background color */
1719
}
1820

1921
#company-logo {
2022
width: 480px; /* Width */
2123
height: auto; /* Maintain aspect ratio */
24+
margin-bottom: 10px; /* Add some space below the logo */
2225
}
2326

27+
#logo-label {
28+
color: #e4b127;
29+
font-size: 18px; /* Adjust the font size as needed */
30+
text-align: center;
31+
}
32+
33+
34+
2435
/* Quote Form */
2536
#quote-form-section {
2637
padding: 4px 18px; /* Padding */
@@ -72,6 +83,9 @@ body {
7283
color: rgb(116, 176, 255);
7384
}
7485

86+
87+
88+
7589
#quote-form input[type="text"],
7690
#quote-form input[type="email"],
7791
#quote-form input[type="tel"],
@@ -132,6 +146,9 @@ body {
132146
background-color: #b1b1b1;
133147
}
134148

149+
150+
151+
135152
/* Image Section */
136153
.image-section {
137154
padding: 18px; /* Padding */
@@ -160,7 +177,3 @@ body {
160177
flex-direction: row-reverse;
161178
margin-left: 400px;
162179
}
163-
164-
165-
166-

0 commit comments

Comments
 (0)