-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (59 loc) · 2.53 KB
/
index.html
File metadata and controls
73 lines (59 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevWrap — SC-ECE Presents</title>
<meta name="description" content="SC-ECE Presents DevWrap — From Sketch to Solution. A hackathon experience built for builders." />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet" />
<!-- Styles -->
<link rel="stylesheet" href="src/css/styles.css" />
</head>
<body>
<div id="root">
<!-- ── LOADER SCREEN ── -->
<div id="loader">
<div id="loader-title">SC-ECE<br/>PRESENTS</div>
<div id="loader-line"></div>
<div id="loader-subtitle">INNOVATION × DESIGN × ENGINEERING</div>
<div id="loader-hint">
💡 <strong>Ready to build?</strong><br/>
Start editing <code>index.html</code> to customize this page
</div>
</div>
<!-- ── DEVWRAP SCREEN ── -->
<div id="devwrap">
<!-- Marquee bar -->
<div id="marquee-bar">
<div id="marquee-track">
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
<span>SC-ECE PRESENTS · DEVWRAP · FROM SKETCH TO SOLUTION ·</span>
</div>
</div>
<!-- Pixel grid (populated by JS) -->
<div id="pixel-grid"></div>
<div id="devwrap-title">devwrap</div>
<div id="devwrap-tagline">From Sketch to Solution</div>
<div id="welcome-msg">
Welcome, Builders. 🚀<br/>
<span>Turn your ideas into interfaces.</span>
</div>
<div id="devwrap-hint">
💡 <strong>Ready to customize?</strong><br/>
Start editing <code>index.html</code> to make changes
</div>
</div><!-- /#devwrap -->
</div><!-- /#root -->
<!-- Scripts -->
<script src="src/js/main.js"></script>
</body>
</html>