-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_cdd.html
More file actions
40 lines (38 loc) · 1.06 KB
/
index_cdd.html
File metadata and controls
40 lines (38 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>🔄 Circolo del Design 🔄</title>
<link rel="stylesheet" href="src/styles/style_cdd.css">
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
</head>
<body>
<h1 class="title-h1">CIRCOLO DEL DESIGN</h1>
<div id="controlContainer">
<div class="bottone">
<button id="resetButton">MATERIAL</button>
</div>
<div class="container">
<div id="colorPickerContainer">
<div id="customColorPicker">
<div id="swatch"></div>
<input type="color" id="backgroundColorPicker" value="#ffed00">
</div>
</div>
</div>
<div class="bottone">
<a id="nextPageButton" href="/PORTFOLIO/">WHO I AM</a>
</div>
</div>
<!-- Import map per Three.js -->
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.158.0/build/three.module.js",
"three/examples/jsm/": "https://cdn.jsdelivr.net/npm/three@0.158.0/examples/jsm/"
}
}
</script>
<script type="module" src="/scripts/script_cdd.js"></script>
</body>
</html>