Advertisement
Guest User

Untitled

a guest
May 4th, 2025
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.43 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 - Professional Computer Services</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. font-family: 'Arial', sans-serif;
  13. }
  14.  
  15. body {
  16. background-color: #f5f5f5;
  17. color: #333;
  18. }
  19.  
  20. /* Header Styles */
  21. header {
  22. background: #2c2c2c;
  23. padding: 1rem 0;
  24. position: sticky;
  25. top: 0;
  26. z-index: 1000;
  27. }
  28.  
  29. .header-content {
  30. max-width: 1200px;
  31. margin: 0 auto;
  32. padding: 0 2rem;
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. }
  37.  
  38. .logo {
  39. color: #ff6b6b;
  40. font-size: 1.8rem;
  41. text-decoration: none;
  42. }
  43.  
  44. nav {
  45. display: flex;
  46. gap: 2rem;
  47. }
  48.  
  49. nav a {
  50. color: white;
  51. text-decoration: none;
  52. font-size: 1.1rem;
  53. transition: color 0.3s;
  54. }
  55.  
  56. nav a:hover {
  57. color: #ff6b6b;
  58. }
  59.  
  60. /* Hero Section */
  61. .hero {
  62. background: linear-gradient(45deg, #2c2c2c, #464646);
  63. color: white;
  64. text-align: center;
  65. padding: 15vh 2rem;
  66. min-height: 100vh;
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. align-items: center;
  71. }
  72.  
  73. .hero h1 {
  74. font-size: 3.5rem;
  75. margin-bottom: 1rem;
  76. }
  77.  
  78. .hero p {
  79. font-size: 1.2rem;
  80. max-width: 600px;
  81. margin-bottom: 2rem;
  82. }
  83.  
  84. .hero-button {
  85. background: #ff6b6b;
  86. color: white;
  87. padding: 1rem 3rem;
  88. border: none;
  89. border-radius: 5px;
  90. font-size: 1.1rem;
  91. cursor: pointer;
  92. transition: transform 0.3s;
  93. }
  94.  
  95. .hero-button:hover {
  96. transform: translateY(-3px);
  97. box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  98. }
  99.  
  100. /* Services Section */
  101. .services {
  102. max-width: 1200px;
  103. margin: 4rem auto;
  104. padding: 0 2rem;
  105. }
  106.  
  107. .section-header {
  108. text-align: center;
  109. margin-bottom: 3rem;
  110. }
  111.  
  112. .service-card {
  113. background: white;
  114. padding: 2rem;
  115. border-radius: 10px;
  116. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  117. transition: transform 0.3s;
  118. margin-bottom: 2rem;
  119. }
  120.  
  121. .service-card:hover {
  122. transform: translateY(-5px);
  123. }
  124.  
  125. .service-icon {
  126. font-size: 2.5rem;
  127. color: #ff6b6b;
  128. margin-bottom: 1rem;
  129. }
  130.  
  131. /* Contact Section */
  132. .contact {
  133. background: #f5f5f5;
  134. padding: 4rem 0;
  135. }
  136.  
  137. .contact-form {
  138. max-width: 600px;
  139. margin: 0 auto;
  140. padding: 0 2rem;
  141. }
  142.  
  143. .form-group {
  144. margin-bottom: 1.5rem;
  145. }
  146.  
  147. .form-group label {
  148. display: block;
  149. margin-bottom: 0.5rem;
  150. color: #333;
  151. }
  152.  
  153. .form-group input,
  154. .form-group textarea {
  155. width: 100%;
  156. padding: 0.8rem;
  157. border: 1px solid #ddd;
  158. border-radius: 5px;
  159. font-size: 1rem;
  160. }
  161.  
  162. .submit-btn {
  163. background: #ff6b6b;
  164. color: white;
  165. padding: 1rem 3rem;
  166. border: none;
  167. border-radius: 5px;
  168. font-size: 1rem;
  169. cursor: pointer;
  170. transition: transform 0.3s;
  171. }
  172.  
  173. .submit-btn:hover {
  174. transform: translateY(-2px);
  175. box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  176. }
  177.  
  178. /* Footer */
  179. footer {
  180. background: #2c2c2c;
  181. color: white;
  182. text-align: center;
  183. padding: 1rem 0;
  184. margin-top: 4rem;
  185. }
  186.  
  187. /* Responsive Design */
  188. @media (max-width: 768px) {
  189. .hero h1 {
  190. font-size: 2.5rem;
  191. }
  192.  
  193. .service-card {
  194. margin-bottom: 1.5rem;
  195. }
  196. }
  197. </style>
  198. </head>
  199. <body>
  200. <!-- Header -->
  201. <header>
  202. <div class="header-content">
  203. <a href="#" class="logo">Steve's PC Repair</a>
  204. <nav>
  205. <a href="#home">Home</a>
  206. <a href="#services">Services</a>
  207. <a href="#about">About</a>
  208. <a href="#contact">Contact</a>
  209. </nav>
  210. </div>
  211. </header>
  212.  
  213. <!-- Hero Section -->
  214. <section class="hero" id="home">
  215. <h1>Professional Computer Repair Services</h1>
  216. <p>Fast, reliable, and affordable solutions for all your PC needs</p>
  217. <button class="hero-button">Schedule Service</button>
  218. </section>
  219.  
  220. <!-- Services Section -->
  221. <section class="services" id="services">
  222. <div class="section-header">
  223. <h2>Our Services</h2>
  224. <p>We offer a wide range of computer repair and maintenance services</p>
  225. </div>
  226. <div class="service-cards">
  227. <div class="service-card">
  228. <div class="service-icon">&#x2699;</div>
  229. <h3>Hardware Repair</h3>
  230. <p>Expert repair for motherboards, graphics cards, and more</p>
  231. </div>
  232. <div class="service-card">
  233. <div class="service-icon">&#x1F50E;</div>
  234. <h3>Software Support</h3>
  235. <p>OS installation, virus removal, and system optimization</p>
  236. </div>
  237. <div class="service-card">
  238. <div class="service-icon">&#x1F4BB;</div>
  239. <h3>Data Recovery</h3>
  240. <p>Recover lost data from crashed hard drives and storage devices</p>
  241. </div>
  242. </div>
  243. </section>
  244.  
  245. <!-- Contact Section -->
  246. <section class="contact" id="contact">
  247. <div class="contact-form">
  248. <h2>Get in Touch</h2>
  249. <p>Have questions or need service? Fill out the form below</p>
  250. <form action="#" method="post">
  251. <div class="form-group">
  252. <label for="name">Name</label>
  253. <input type="text" id="name" name="name" required>
  254. </div>
  255. <div class="form-group">
  256. <label for="email">Email</label>
  257. <input type="email" id="email" name="email" required>
  258. </div>
  259. <div class="form-group">
  260. <label for="message">Message</label>
  261. <textarea id="message" name="message" rows="4" required></textarea>
  262. </div>
  263. <button type="submit" class="submit-btn">Send Message</button>
  264. </form>
  265. </div>
  266. </section>
  267.  
  268. <!-- Footer -->
  269. <footer>
  270. <p>&copy; 2023 Steve's PC Repair. All rights reserved.</p>
  271. </footer>
  272. </body>
  273. </html>
  274.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement