-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
131 lines (112 loc) · 3.36 KB
/
portfolio.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Samaksh's Portfolio</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Add some styling to make the mosaic */
body {
font-family: Arial, sans-serif;
}
header {
text-align: center;
padding: 20px;
background-color: #f4f4f4;
}
nav {
text-align: center;
margin-bottom: 20px;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #333;
}
section {
margin-bottom: 30px;
}
.mosaic-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
padding: 20px;
justify-content: center;
}
.mosaic-item {
position: relative;
overflow: hidden;
cursor: pointer;
}
.mosaic-item img {
width: 100%;
height: auto;
border-radius: 8px;
transition: transform 0.3s ease;
}
.mosaic-item:hover img {
transform: scale(1.05);
}
footer {
text-align: center;
padding: 20px;
background-color: #f4f4f4;
}
</style>
</head>
<body>
<header>
<h1>Samaksh Judson's Portfolio</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="mailto:judsonsamaksh@gmail.com">Contact</a>
<a href="https://github.com/Samaksh0278">Github</a>
<a href="hobbies.html">Hobbies</a>
</nav>
<!-- Mosaic of project links -->
<div class="mosaic-container">
<!-- Kantor Lab Experience Project -->
<div class="mosaic-item">
<a href="kantor-lab.html">
<img src="Videos/LeafBlower.gif" alt="Kantor Lab Project Video">
</a>
</div>
<!-- Segmentation Project -->
<div class="mosaic-item">
<a href="segmentation-project.html">
<img src="Pictures/VLR.png" alt="Segmentation Project Video">
</a>
</div>
<!-- Sailboat Project -->
<div class="mosaic-item">
<a href="sailboat-project.html">
<img src="Videos/sfla.historical.2024040606.gif" alt="Sailboat Project Video">
</a>
</div>
<!-- I2GROW Project -->
<div class="mosaic-item">
<a href="i2grow-project.html">
<img src="i2grow-video.gif" alt="I2GROW Project Video">
</a>
</div>
<!-- Path Planning Project -->
<div class="mosaic-item">
<a href="path-planning-project.html">
<img src="Videos/IDL_Project.gif" alt="Path Planning Project Video">
</a>
</div>
<!-- Crack Detection Project -->
<div class="mosaic-item">
<a href="crack-detection-project.html">
<img src="Videos/KF.gif" alt="Crack Detection Project Video">
</a>
</div>
</div>
<footer>
<p>© 2024 Samaksh Judson. All Rights Reserved.</p>
</footer>
</body>
</html>