Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
YpzarJohn24 committed Dec 24, 2023
0 parents commit a615475
Show file tree
Hide file tree
Showing 34 changed files with 801 additions and 0 deletions.
Binary file added Thumbs.db
Binary file not shown.
402 changes: 402 additions & 0 deletions assets/css/style.css

Large diffs are not rendered by default.

Binary file added assets/images/Thumbs.db
Binary file not shown.
Binary file added assets/images/about-abs-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/about-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/about-shape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions assets/images/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/footer-shape-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/footer-shape-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/footer-shape-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/hero-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/hero-bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/nav-before-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/service-bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/services-6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/text-bars-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/text-bars-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/work-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/work-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/work-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"use strict";

// MOBILE NAVBAR TOGGLE

const navbar = document.querySelector("[data-navbar]");
const navToggler = document.querySelector("[data-nav-toggler]");

navToggler.addEventListener("click", function () {
navbar.classList.toggle("active");
this.classList.toggle("active");
});
4 changes: 4 additions & 0 deletions favicon.svg
128 changes: 128 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- primary meta tags -->
<title>Autofix - Auto Maintenance & Repair Service</title>
<meta name="title" content="Autofix - Auto Maintenance & Repair Service" />
<meta name="description" content="This is a vehicle repair website" />
<!-- favicon -->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml" />
<!-- google font link -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Mulish&display=swap"
rel="stylesheet"
/>

<!-- material icon font -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@40,600,0,0"
/>
<!-- custom css link -->
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- preload images -->
<link rel="preload" as="image" href="./assets/images/hero-banner.png" />
<link rel="preload" as="image" href="./assets/images/hero-bg.jpg" />
</head>
<body>
<!-- #HEADER -->

<header class="header">
<div class="container">
<a href="#" class="logo">
<img
src="./assets/images/logo.png"
width="128"
height="63"
alt="autofix home"
/>
</a>

<nav class="navbar" data-navbar>
<ul class="navbar-list">
<li>
<a href="#" class="navbar-link">Home</a>
</li>
<li>
<a href="#" class="navbar-link">About</a>
</li>
<li>
<a href="#" class="navbar-link">Services</a>
</li>
<li>
<a href="#" class="navbar-link">Projects</a>
</li>
<li>
<a href="#" class="navbar-link">Contact</a>
</li>
</ul>
</nav>

<a href="#" class="btn btn-primary">
<span class="span">Get a Quote</span>
<span class="material-symbols-rounded">arrow_forward</span>
</a>

<button
class="nav-toggle-btn"
aria-label="toggle menu"
data-nav-toggler
>
<span class="nav-toggle-icon icon-1"></span>
<span class="nav-toggle-icon icon-2"></span>
<span class="nav-toggle-icon icon-3"></span>
</button>
</div>
</header>

<main>
<article>
<!-- #HERO -->

<section
class="hero has-bg-image"
aria-label="home"
style="background-image: url(./assets/images/hero-bg.jpg)"
>
<div class="container">
<div class="hero-content">
<p class="section-subtitle :dark">
We have talented engineers & mechanics
</p>

<h1 class="h1 section-title">
Auto Maintenance & Repair Service
</h1>

<p class="section-text">
Duis aute irure dolor in reprehenderit in voluptate velit esse
Excepteur sint occaecat cupidatat non proident.
</p>

<a href="#" class="btn">
<span class="span">Our Services</span>
<span class="material-symbols-rounded">arrow_forward</span>
</a>
</div>

<figure class="hero-banner" style="--width: 1228; --height: 789">
<img
src="./assets/images/hero-banner.png"
width="1228"
height="789"
alt="red motor vehicle"
class="move-anim"
/>
</figure>
</div>
</section>
</article>
</main>
<!-- custom js link -->
<script src="./assets/js/script.js"></script>
</body>
</html>
151 changes: 151 additions & 0 deletions index.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
Autofix - Auto Maintenance & Repair Service

This is a vehicle repair html template made by codewithsadee



#---------- HEADER ----------#

alt = autofix home

Home
About
Services
Projects
Contact

Get a Quote
<span class="material-symbols-rounded">arrow_forward</span>

aria-label = toggle menu


#---------- HERO ----------#

We have talented engineers & mechanics

Auto Maintenance & Repair Service

Duis aute irure dolor in reprehenderit in voluptate velit esse Excepteur sint occaecat cupidatat non proident.

Our Services
<span class="material-symbols-rounded">arrow_forward</span>

alt = red motor vehicle



#---------- SERVICE ----------#

Our services
We Provide Great Services For your Vehicle

alt = Engine Repair
Engine Repair
Autem velaum iure reare aenderit rui in ea roluptate esse ruam moles

Read more

alt = Brake Repair
Brake Repair

alt = Tire Repair
Tire Repair

alt = Battery Repair
Battery Repair

alt = Red Car

alt = Steering Repair
Steering Repair

View All Services
<span class="material-symbols-rounded">arrow_forward</span>



#---------- ABOUT ----------#

alt = vehicle repire equipments

About Us

We’re Commited to Meet the quality

Quis autem vel eum iure reprehenderit qui in ea volu velit esse quam nihil molestiae consequatur, vel illum eui dolorem eum fugiat ruo.

Reprehenderit qui in ea volu velit esse quam nihil moe stiae consequatur, vel illum eui.

8K+
Happy Clients

22+
Instruments

50+
Years in market

99%
Projects completed



#---------- WORK ----------#

Our Work

Latest projects we have done

alt = Engine Repair
Auto Repair
Engine Repair

<span class="material-symbols-rounded">arrow_forward</span>

alt = Car Tyre change
Car Tyre change

alt = Battery Adjust
Battery Adjust



#---------- FOOTER ----------#

alt = autofix home

Rerum necessitatibus saepe eveniet aut et voluptates repudiandae sint et molestiae non recusandae.

alt = facebook
alt = instagram
alt = twitter

Opening Hours

Monday – Saturday
12.00 – 14.45

Sunday – Thursday
17.30 – 00.00

Friday – Saturday

Contact Info

<span class="material-symbols-rounded">call</span>
+01 2 3456 7890

<span class="material-symbols-rounded">mail</span>
info@autofix.com

<span class="material-symbols-rounded">location_on</span>
21 King Street Melbourne, 3000, Australia

alt = Shape

Copyright 2023, All Rights Reserved.

alt = Shape

alt = Red Car
Binary file added readme-images/desktop.png
Loading

0 comments on commit a615475

Please sign in to comment.