Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions ContactUs.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.svg">
<link rel="stylesheet" href="preloader.css"/>
<title>Contact Us - Vehigo</title>


Expand All @@ -27,6 +28,11 @@

</head>
<body>

<div id="preloader">
<div class="spinner"></div>
</div>
<div id="app">
<!--
- #HEADER
-->
Expand Down Expand Up @@ -299,9 +305,9 @@ <h3>Message Sent!</h3>
" onmouseover="this.style.backgroundColor='#0056b3'" onmouseout="this.style.backgroundColor='#007BFF'">
<ion-icon name="chevron-up-outline" style="font-size: 24px;"></ion-icon>
</a>

</body>
<script>
const yearEl = document.getElementById('copyright-year');
if(yearEl) yearEl.textContent = new Date().getFullYear();
</script>
</script>
<script src="preloader.js"></script>
</body>
10 changes: 8 additions & 2 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="src/assets/styles/style.css" />


<link rel="stylesheet" href="preloader.css"/>

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
Expand All @@ -21,6 +21,11 @@
</head>

<body>

<div id="preloader">
<div class="spinner"></div>
</div>
<div id="app">
<header class="header" data-header>
<div class="container">
<div class="overlay" data-overlay></div>
Expand Down Expand Up @@ -311,7 +316,8 @@ <h3 class="h3 card-title">
</section>
</article>
</main>

</div>
<script src="preloader.js"></script>
</body>

</html>
8 changes: 7 additions & 1 deletion hostPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.svg">
<link rel="stylesheet" href="preloader.css"/>
<title>
VehiGo-Host Page
</title>
Expand All @@ -25,7 +26,10 @@
</head>

<body>

<div id="preloader">
<div class="spinner"></div>
</div>
<div class="app">
<header class="header" data-header>
<div class="container">

Expand Down Expand Up @@ -114,6 +118,8 @@ <h1>Car Verification</h1>
</form>
</main>
</div>
</div>
<script src="preloader.js"></script>
</body>

</html>
Loading