Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: issue #722 auto-type cursor fixed #809

Merged
merged 3 commits into from
Jun 26, 2024
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
58 changes: 30 additions & 28 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ <h1>TourGuide . . .</h1>
</div>
<div class="header__content">
<div>
<h1 data-aos="fade-in">Find Your Perfect Getaway<br />Discover the World's Best Kept <span
class="auto-typed" style="color: var(--head-text);"></span></h1>
<h1 data-aos="fade-in">Find Your Perfect Getaway<br />Discover the World's Best Kept <div> <span
class="auto-typed" style="color: var(--head-text);"></span></div></h1>
<p class="section__subtitle" data-aos="fade-in">
Make your travel more enjoyable with us. We are the best travel
agency and we are providing the best travel services for our
Expand Down Expand Up @@ -454,29 +454,31 @@ <h2 class="section__title" data-aos="fade-in">Explore top destinations</h2>
<img src="./img/goa.jpg" style="width:100%">
</div>

<div class="mySlides">
<img src="./img/maldives.jpg" style="width:100%">
</div>
<div class="imageDots">
<span class="active"></span>
<span></span>
<span></span>
<span></span>
</div>
</div> -->
<div class="outer-box">
<div class="containers">

<div class="card active" style="
background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 7%, rgba(255, 255, 255, 0) 50%),
url('./img/eiffelTower.webp')
">
<div class="info">
<img src="./img/eiffelTower.webp" alt="Eiffel Tower" style="width:100%">
<p>||Eiffel Tower||</p>
<h3>PARIS</h3>
</div>
</div>
<div class="mySlides">
<img src="./img/maldives.jpg" style="width:100%">
</div>
<div class="imageDots">
<span class="active"></span>
<span></span>
<span></span>
<span></span>
</div>
</div> -->
<div class="outer-box">
<div class="containers">

<div class="card active" style="
background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 7%, rgba(255, 255, 255, 0) 50%),
url('/img/paris.jpg')
">
<div class="info">

<p>
||Eiffel Tower||
</p>
<h3>PARIS</h3>
</div>
</div>

<div class="card" style="
background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 7%, rgba(255, 255, 255, 0) 50%),
Expand Down Expand Up @@ -1094,7 +1096,7 @@ <h4>Reach Out To Us</h4>

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script>
//initailizing emailjs
//initailizing emailjs

(function () {
emailjs.init("kHyqhzLTyzP0cw1px");
Expand Down Expand Up @@ -1148,7 +1150,7 @@ <h4>Reach Out To Us</h4>



<!-- Start of Conferbot Script
<!-- Start of Conferbot Script

<script type="text/javascript">
(function (d, s, id) {
Expand All @@ -1174,7 +1176,7 @@ <h4>Reach Out To Us</h4>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!--
<!--
<script>
(function ($) {
var isDarkMode = false; // Assuming initially in light mode
Expand Down
2 changes: 0 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2381,5 +2381,3 @@ body {
margin: 0 auto; /* Center the subtitle */
}
}


Loading