Skip to content

Commit 9fe3890

Browse files
Merge pull request #37 from vimal-tech-starter/feature/ordering-content
Contents ordered in all pages as well as Nav Bar
2 parents a9153be + 2ec3d16 commit 9fe3890

4 files changed

Lines changed: 31 additions & 19 deletions

File tree

expertise.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<link rel="stylesheet" href="/css/main.css">
1414
<link rel="stylesheet" href="/css/common.css">
1515
<link rel="stylesheet" href="/css/dropdown.css">
16-
<link rel="stylesheet" href="/css/live-projects.css">
1716
<link rel="stylesheet" href="/css/discount-banner.css">
1817
<link rel="stylesheet" href="/css/whatsapp-floating.css">
1918
<!-- Font Awesome -->
@@ -58,6 +57,8 @@
5857

5958
<ul class="nav-links" id="nav-links">
6059
<li><a href="index.html">Home</a></li>
60+
<!-- New Services link -->
61+
<li><a href="services.html">Services</a></li>
6162
<!-- Dropdown Section -->
6263
<li class="dropdown">
6364
<a href="#hero" class="dropdown-toggle active;">Expertise</a>
@@ -67,8 +68,6 @@
6768
<li><a href="#portfolio">Portfolio</a></li>
6869
</ul>
6970
</li>
70-
<!-- New Services link -->
71-
<li><a href="services.html">Services</a></li>
7271
<li><a href="contact.html">Contact</a></li>
7372
</ul>
7473
<!-- hamburger icon -->
@@ -77,7 +76,6 @@
7776
</div>
7877
</nav>
7978

80-
8179
<!-- Hero Section -->
8280
<section id="hero" class="hero">
8381
<div class="hero-content">
@@ -166,8 +164,9 @@ <h3>Atlassian</h3>
166164
<div class="skill-card"><i class="fab fa-jira"></i>
167165
<h3>Jira</h3>
168166
</div>
169-
<div class="skill-card"><a href="portfolio.html#links" target="_blank">
170-
<i class="fab fa-github"></i><br>GitHub</a></div>
167+
<div class="skill-card"><i class="fab fa-github"></i>
168+
<h3>GitHub</h3>
169+
</div>
171170
</div>
172171
</section><br />
173172

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<link rel="stylesheet" href="/css/live-projects.css">
1616
<link rel="stylesheet" href="/css/discount-banner.css">
1717
<link rel="stylesheet" href="/css/mini-services.css">
18+
<!-- Popup Window CSS -->
1819
<link rel="stylesheet" href="/css/open-modal-btn.css">
1920
<link rel="stylesheet" href="/css/whatsapp-floating.css">
2021
<!-- Font Awesome -->
@@ -61,12 +62,11 @@
6162
<li><a href="#hero" class="active">Home</a></li>
6263
<li><a href="#about">About</a></li>
6364
<li><a href="#services-preview">Offering</a></li>
64-
<li><a href="#live-projects">Live Websites</a></li>
6565
<!-- <li><a href="#visitor-counter">Visitor-Counter</a></li> -->
66-
<!-- New Expertise link -->
67-
<li><a href="expertise.html">Expertise</a></li>
6866
<!-- New Services link -->
6967
<li><a href="services.html">Services</a></li>
68+
<!-- New Expertise link -->
69+
<li><a href="expertise.html">Expertise</a></li>
7070
<li><a href="contact.html">Contact</a></li>
7171
</ul>
7272
<!-- hamburger icon -->
@@ -75,7 +75,6 @@
7575
</div>
7676
</nav>
7777

78-
7978
<!-- Hero Section -->
8079
<section id="hero" class="hero">
8180
<div class="hero-content">
@@ -165,7 +164,7 @@ <h3 style="color: #604848">
165164
</div>
166165
</div>
167166
</section>
168-
167+
169168
<!-- Floating WhatsApp -->
170169
<a href="https://wa.me/919638474047?text=Hello%20Vimal%2C%0AI%20would%20like%20to%20know%20more%20about%20your%20tech%20services."
171170
class="whatsapp-float" target="_blank">
@@ -192,8 +191,9 @@ <h3 style="color: #604848">
192191
<!-- JS -->
193192
<script src="/js/common.js"></script>
194193
<script type="module" src="/js/visitorCounter.js"></script>
194+
<!-- Popup Window JS -->
195195
<script src="/js/open-modal-btn.js"></script>
196196
<script src="/js/main.js"></script>
197197
</body>
198198

199-
</html>
199+
</html>

portfolio.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Portfolio</title>
7+
<title>Vimal Tech • Portfolio</title>
88
<!-- Favicon -->
99
<!-- <link rel="icon" type="image/x-icon" href="/images/favicon.ico"> -->
1010
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
@@ -35,10 +35,10 @@
3535
</div>
3636
<!-- Floating Navigation -->
3737
<nav>
38+
<a href="index.html">Home</a>
3839
<a href="#overview">Overview</a>
3940
<a href="#design">Design</a>
4041
<a href="#github-links">GitHub</a>
41-
<a href="index.html">Home</a>
4242
</nav>
4343

4444
<header>
@@ -154,7 +154,11 @@ <h3>📘 Field Subjects</h3>
154154
<div>
155155
<b>
156156
<p>&#9400; 23 - SEPT - 2023</p><br />
157-
<p>Vimal Patel | Java Developer Portfolio</p>
157+
<p>
158+
| Vimal Patel |</br>
159+
| Software Development Engineer |</br>
160+
| Java Developer Portfolio |
161+
</p>
158162
</b>
159163
</div>
160164
</footer>

services.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
<link rel="stylesheet" href="/css/services.css">
1414
<link rel="stylesheet" href="/css/common.css">
1515
<link rel="stylesheet" href="/css/discount-banner.css">
16+
<link rel="stylesheet" href="/css/dropdown.css">
1617
<link rel="stylesheet" href="/css/live-projects.css">
18+
<!-- Popup Window CSS -->
1719
<link rel="stylesheet" href="/css/open-modal-btn.css">
1820
<link rel="stylesheet" href="/css/whatsapp-floating.css">
1921
<!-- Font Awesome -->
@@ -59,9 +61,14 @@
5961

6062
<ul class="nav-links" id="nav-links">
6163
<li><a href="index.html">Home</a></li>
62-
<li><a href="services.html" class="active">Services</a></li>
63-
<li><a href="#services-offer">Offer Services</a></li>
64-
<li><a href="#live-projects">Live Websites</a></li>
64+
<!-- Dropdown Section -->
65+
<li class="dropdown">
66+
<a href="#hero" class="dropdown-toggle active;">Services</a>
67+
<ul class="dropdown-menu">
68+
<li><a href="#services-offer">Offer Services</a></li>
69+
<li><a href="#live-projects">Live Websites</a></li>
70+
</ul>
71+
</li>
6572
<!-- New Expertise link -->
6673
<li><a href="expertise.html">Expertise</a></li>
6774
<li><a href="contact.html">Contact</a></li>
@@ -73,7 +80,7 @@
7380
</nav>
7481

7582
<!-- Hero Section with Particles + Animated Overlay -->
76-
<section class="hero-services">
83+
<section id="hero" class="hero-services">
7784
<div id="particles-js"></div>
7885
<div class="gradient-overlay"></div>
7986
<div class="hero-content">
@@ -168,7 +175,9 @@ <h2>Live Websites</h2>
168175

169176
<!-- JS -->
170177
<script src="/js/common.js"></script>
178+
<!-- Popup Window JS -->
171179
<script src="/js/open-modal-btn.js"></script>
180+
<script src="/js/dropdown.js"></script>
172181
<script src="/js/services.js"></script>
173182
</body>
174183

0 commit comments

Comments
 (0)