-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.html
59 lines (53 loc) · 1.87 KB
/
tag.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<head>
<link rel='stylesheet' href='styles/css/main.css'>
<title> EXACT Tag </title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 10px;
max-width: 1800px;
}
.gallery img {
width: 100%;
max-width: 600px;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<a href="index.html" class="home-button">Back</a>
<p class='name'>
EXACT Tag
</p>
<p class="degree">
RFID/NFC Card Embedded in Concrete for High Volume On-Site Tracking
</p>
</br>
</br>
<p class="bio">
Tag is a simple two-piece product embedded in concrete forms, consisting of an RFID card and a plastic card holder. I was responsible for designing the card holder and sourcing a supplier.
</br>
</br>
My solution was an injection-molded holder featuring two pins to secure it to the mold and two chamfered posts to keep it in place when concrete is poured. The chamfered design accommodates slight variations in hole size and compensates for wear over
time. The plastic RFID card fits securely within the holder, ensuring easy installation and firm retention. I also sourced a supplier that offered extremely low costs at high volumes, enabling EXACT to sell Tag in bulk at a competitive price.
</br>
</br>
</p>
<p class="degree">
Gallery
</p>
</br>
<div class="gallery">
<img src="images/tag/tag-render.png" alt="Image 1">
<img src="images/tag/tag-render-front.PNG" alt="Image 2">
</div>
</body>
</html>