-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemptech.html
180 lines (169 loc) · 4.89 KB
/
temptech.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
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
170
171
172
173
174
175
176
177
178
179
180
<!-- AWS -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('aws')"
onkeypress="handleTechKeypress(event, 'aws')"
data-tooltip="Amazon Web Services"
aria-label="Learn more about AWS"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/AWS.svg" alt="AWS" />
</button>
</div>
<span></span>
<!-- C++ -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('cpp')"
onkeypress="handleTechKeypress(event, 'cpp')"
data-tooltip="C++"
aria-label="Learn more about C++"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/C++.svg" alt="C++" />
</button>
</div>
<!-- CSS3 -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('css')"
onkeypress="handleTechKeypress(event, 'css')"
data-tooltip="CSS3"
aria-label="Learn more about CSS3"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/CSS3.svg" alt="CSS3" />
</button>
</div>
<!-- Flask -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('flask')"
onkeypress="handleTechKeypress(event, 'flask')"
data-tooltip="Flask"
aria-label="Learn more about Flask"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Flask.png" alt="Flask" />
</button>
</div>
<!-- Git -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('git')"
onkeypress="handleTechKeypress(event, 'git')"
data-tooltip="Git"
aria-label="Learn more about Git"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Git.svg" alt="Git" />
</button>
</div>
<!-- JavaScript -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('javascript')"
onkeypress="handleTechKeypress(event, 'javascript')"
data-tooltip="JavaScript"
aria-label="Learn more about JavaScript"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/JavaScript.svg" alt="JavaScript" />
</button>
</div>
<!-- NGINX -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('nginx')"
onkeypress="handleTechKeypress(event, 'nginx')"
data-tooltip="NGINX"
aria-label="Learn more about NGINX"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/NGINX.svg" alt="NGINX" />
</button>
</div>
<!-- Node.js -->
<div class="tech-icon-container">
<button
class="tech-icon-wrapper"
onclick="handleTechClick('nodejs')"
onkeypress="handleTechKeypress(event, 'nodejs')"
data-tooltip="Node.js"
aria-label="Learn more about Node.js"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Node.js.svg" alt="Node.js" />
</button>
<span class="tech-label">NodeJS</span>
</div>
<!-- PostgreSQL -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('postgresql')"
onkeypress="handleTechKeypress(event, 'postgresql')"
data-tooltip="PostgreSQL"
aria-label="Learn more about PostgreSQL"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/PostgresSQL.svg" alt="PostgreSQL" />
</button>
</div>
<!-- Python -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('python')"
onkeypress="handleTechKeypress(event, 'python')"
data-tooltip="Python"
aria-label="Learn more about Python"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Python.svg" alt="Python" />
</button>
</div>
<!-- PyTorch -->
<div class="tech-icon-container">
<span class="tech-label">test</span>
<button
class="tech-icon-wrapper"
onclick="handleTechClick('pytorch')"
onkeypress="handleTechKeypress(event, 'pytorch')"
data-tooltip="PyTorch"
aria-label="Learn more about PyTorch"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/Pytorch.svg" alt="PyTorch" />
</button>
</div>
<!-- React -->
<div class="tech-icon-container">
<button
class="tech-icon-wrapper"
onclick="handleTechClick('react')"
onkeypress="handleTechKeypress(event, 'react')"
data-tooltip="React"
aria-label="Learn more about React"
tabindex="0"
>
<img class="tech-icon" src="assets/tech/React.svg" alt="React" />
</button>
<span class="tech-label">React</span>
</div>