-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (169 loc) · 6.1 KB
/
index.html
File metadata and controls
169 lines (169 loc) · 6.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Devashri's Portfolio</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="p-4">
<div class="container d-flex justify-content-between align-items-center">
<div class="logo">DS.</div>
<nav>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item"><a class="nav-link" href="#">Resume</a></li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="container mt-5">
<div class="row">
<div class="col-md-12">
<h1 class="display-3">Hi, I'm Devashri.</h1>
<p class="lead">
UX Designer and Front-End Developer. Currently, I'm based in
Brisbane, designing responsive websites. I enjoy turning complex
problems into simple, beautiful, and intuitive designs.
</p>
</div>
</div>
<div class="toggle-buttons text-center mb-4">
<button
class="btn btn-toggle active"
onclick="showSection('ux-design')"
>
UX Design
</button>
<button class="btn btn-toggle" onclick="showSection('web-development')">
Web Development
</button>
<button class="btn btn-toggle" onclick="showSection('uni-projects')">
Uni Projects
</button>
</div>
<div id="ux-design" class="project-section">
<div class="row">
<div class="col-md-6 mb-4">
<div class="project-card">
<img
src="path_to_your_image1.jpg"
class="project-image"
alt="Odd Sox"
/>
<h3 class="project-title">Odd Sox</h3>
<p class="project-description">
A CRO website redesign for a sock brand that specializes in
selling unique designs featuring iconic shows, artists, and pop
culture icons.
</p>
</div>
</div>
</div>
</div>
<div id="web-development" class="project-section d-none">
<div class="row">
<div class="col-md-6 mb-4">
<div class="project-card">
<img
src="images/msc.png"
class="project-image"
alt="MenuScanOrder"
/>
<h3 class="project-title">MenuScanOrder</h3>
<p class="project-description">
A SaaS web application tailored specifically for restaurants,
cafes, and coffee shops, revolutionizing the traditional
ordering process.
</p>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="project-card">
<img
src="images/event.png"
class="project-image"
alt="Another Project"
/>
<h3 class="project-title">Another Project</h3>
<p class="project-description">
A description of another web development project that highlights
the features and benefits of the project.
</p>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="project-card">
<img
src="images/hs.png"
class="project-image"
alt="Ancestral Echoes"
/>
<h3 class="project-title">Ancestral Echoes</h3>
<p class="project-description">
A description of another web development project that highlights
the features and benefits of the project.
</p>
</div>
</div>
</div>
</div>
<div id="uni-projects" class="project-section d-none">
<div class="row">
<!-- Add your Uni Projects content here -->
</div>
</div>
<div class="contact-section mt-10">
<p class="lead">
<span role="img" aria-label="wave">👋</span> Get in touch at
</p>
<h2 class="email">[email protected]</h2>
<button class="btn btn-primary btn-lg mt-3">Contact Me</button>
<div class="footer mt-5">
<hr />
<nav>
<ul class="nav justify-content">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#">About</a></li>
<li class="nav-item"><a class="nav-link" href="#">Resume</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
</nav>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
function showSection(sectionId) {
document.querySelectorAll(".project-section").forEach((section) => {
section.classList.add("d-none");
});
document.getElementById(sectionId).classList.remove("d-none");
document.querySelectorAll(".btn-toggle").forEach((button) => {
button.classList.remove("active");
});
document
.querySelector(`button[onclick="showSection('${sectionId}')"]`)
.classList.add("active");
}
</script>
</body>
</html>