Advertisement
dsgregfdhgfhjufdgh

qwen 3 332b

May 4th, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6. <title>Steve's PC Repair</title>
  7. <style>
  8. /* Reset & Base Styles */
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. body {
  15. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  16. line-height: 1.6;
  17. color: #333;
  18. background: #f4f4f4;
  19. }
  20.  
  21. /* Nav Bar */
  22. header {
  23. background: #1a1a1a;
  24. color: #fff;
  25. padding: 1rem 2rem;
  26. position: sticky;
  27. top: 0;
  28. z-index: 1000;
  29. }
  30. nav a {
  31. color: #fff;
  32. margin: 0 1rem;
  33. text-decoration: none;
  34. font-weight: 500;
  35. }
  36. nav a:hover {
  37. text-decoration: underline;
  38. }
  39.  
  40. /* Hero Section */
  41. .hero {
  42. background: linear-gradient(135deg, #2980b9, #6dd5fa);
  43. color: white;
  44. padding: 4rem 2rem;
  45. text-align: center;
  46. }
  47. .hero h1 {
  48. font-size: 3rem;
  49. margin-bottom: 1rem;
  50. }
  51. .hero p {
  52. font-size: 1.2rem;
  53. margin-bottom: 2rem;
  54. }
  55. .hero a {
  56. background: #fff;
  57. color: #2980b9;
  58. padding: 0.8rem 1.5rem;
  59. border-radius: 5px;
  60. text-decoration: none;
  61. font-weight: bold;
  62. transition: background 0.3s;
  63. }
  64. .hero a:hover {
  65. background: #f0f0f0;
  66. }
  67.  
  68. /* Services Section */
  69. .services {
  70. padding: 4rem 2rem;
  71. background: white;
  72. }
  73. .services h2 {
  74. text-align: center;
  75. margin-bottom: 3rem;
  76. color: #2980b9;
  77. }
  78. .service-cards {
  79. display: flex;
  80. flex-wrap: wrap;
  81. justify-content: center;
  82. gap: 2rem;
  83. max-width: 1200px;
  84. margin: 0 auto;
  85. }
  86. .card {
  87. background: #f9f9f9;
  88. border-radius: 10px;
  89. padding: 2rem;
  90. width: 300px;
  91. text-align: center;
  92. box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  93. transition: transform 0.3s;
  94. }
  95. .card:hover {
  96. transform: translateY(-10px);
  97. }
  98. .card i {
  99. font-size: 3rem;
  100. margin-bottom: 1rem;
  101. }
  102.  
  103. /* About Section */
  104. .about {
  105. padding: 4rem 2rem;
  106. background: #f4f4f4;
  107. text-align: center;
  108. }
  109. .about h2 {
  110. color: #2980b9;
  111. margin-bottom: 2rem;
  112. }
  113. .about-content {
  114. max-width: 800px;
  115. margin: 0 auto;
  116. display: flex;
  117. flex-wrap: wrap;
  118. gap: 2rem;
  119. align-items: center;
  120. justify-content: center;
  121. }
  122. .about-content img {
  123. width: 100%;
  124. max-width: 400px;
  125. border-radius: 10px;
  126. box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  127. }
  128. .about-text {
  129. max-width: 500px;
  130. }
  131.  
  132. /* Contact Section */
  133. .contact {
  134. padding: 4rem 2rem;
  135. background: white;
  136. }
  137. .contact h2 {
  138. text-align: center;
  139. margin-bottom: 3rem;
  140. color: #2980b9;
  141. }
  142. .contact-form {
  143. max-width: 700px;
  144. margin: 0 auto;
  145. background: #fafafa;
  146. padding: 2rem;
  147. border-radius: 10px;
  148. box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  149. }
  150. .contact-form input,
  151. .contact-form textarea {
  152. width: 100%;
  153. padding: 0.8rem;
  154. margin-bottom: 1rem;
  155. border: 1px solid #ccc;
  156. border-radius: 5px;
  157. }
  158. .contact-form button {
  159. background: #2980b9;
  160. color: white;
  161. padding: 0.8rem 1.5rem;
  162. border: none;
  163. border-radius: 5px;
  164. cursor: pointer;
  165. transition: background 0.3s;
  166. }
  167. .contact-form button:hover {
  168. background: #1c5980;
  169. }
  170.  
  171. /* Footer */
  172. footer {
  173. background: #1a1a1a;
  174. color: #fff;
  175. text-align: center;
  176. padding: 2rem;
  177. font-size: 0.9rem;
  178. }
  179.  
  180. /* Responsive Design */
  181. @media (max-width: 768px) {
  182. .hero h1 {
  183. font-size: 2.2rem;
  184. }
  185. .service-cards {
  186. flex-direction: column;
  187. align-items: center;
  188. }
  189. .about-content {
  190. flex-direction: column;
  191. }
  192. }
  193. </style>
  194. </head>
  195. <body>
  196.  
  197. <!-- Navigation -->
  198. <header>
  199. <nav>
  200. <a href="#services">Services</a>
  201. <a href="#about">About</a>
  202. <a href="#contact">Contact</a>
  203. </nav>
  204. </header>
  205.  
  206. <!-- Hero Section -->
  207. <section class="hero">
  208. <h1>Steve's PC Repair</h1>
  209. <p>Professional, Fast & Affordable Computer Repair Services</p>
  210. <a href="#contact">Get a Quote</a>
  211. </section>
  212.  
  213. <!-- Services Section -->
  214. <section class="services" id="services">
  215. <h2>Our Services</h2>
  216. <div class="service-cards">
  217. <div class="card">
  218. <i>⚙️</i>
  219. <h3>Hardware Repair</h3>
  220. <p>Expert repair for laptops, desktops, and peripherals.</p>
  221. </div>
  222. <div class="card">
  223. <i>💡</i>
  224. <h3>Software Support</h3>
  225. <p>OS installation, virus removal, and system optimization.</p>
  226. </div>
  227. <div class="card">
  228. <i>🛡️</i>
  229. <h3>Security Solutions</h3>
  230. <p>Malware removal and network security setup.</p>
  231. </div>
  232. </div>
  233. </section>
  234.  
  235. <!-- About Section -->
  236. <section class="about" id="about">
  237. <h2>About Steve</h2>
  238. <div class="about-content">
  239. <img src="https://picsum.photos/400/300" alt="Steve at work" />
  240. <div class="about-text">
  241. <p>Hi! I'm Steve, a certified PC technician with over 10 years of experience in hardware and software repair. I provide personalized, reliable services to keep your technology running smoothly.</p>
  242. <p>My workshop is equipped with state-of-the-art tools, and I guarantee quality work with a 90-day warranty on all repairs.</p>
  243. </div>
  244. </div>
  245. </section>
  246.  
  247. <!-- Contact Section -->
  248. <section class="contact" id="contact">
  249. <h2>Contact Us</h2>
  250. <div class="contact-form">
  251. <form action="#" method="POST">
  252. <input type="text" name="name" placeholder="Your Name" required />
  253. <input type="email" name="email" placeholder="Your Email" required />
  254. <textarea name="message" rows="5" placeholder="Describe your issue..." required></textarea>
  255. <button type="submit">Send Message</button>
  256. </form>
  257. <p style="text-align:center; margin-top:1rem;">
  258. <strong>Email:</strong> [email protected] | <strong>Phone:</strong> (555) 123-4567
  259. </p>
  260. </div>
  261. </section>
  262.  
  263. <!-- Footer -->
  264. <footer>
  265. <p>&copy; 2025 Steve's PC Repair. All rights reserved.</p>
  266. </footer>
  267.  
  268. </body>
  269. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement