-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (64 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
83 lines (64 loc) · 2.03 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
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Prototype</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<div class="logo">Interactive Prototype</div>
<nav>
<a href="#home">Home</a>
<a href="#features">Features</a>
<a href="#screens">Screens</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero" id="home">
<h1>Modern Interactive Prototype</h1>
<p>Experience smooth interactions and responsive UI design.</p>
<div class="hero-buttons">
<button>View Demo</button>
<button class="secondary">Explore Features</button>
</div>
</section>
<section class="features" id="features">
<div class="card">
<h3>Responsive Design</h3>
<p>Works perfectly on mobile, tablet, and desktop devices.</p>
</div>
<div class="card">
<h3>Interactive Navigation</h3>
<p>Smooth page transitions and user-friendly navigation.</p>
</div>
<div class="card">
<h3>Modern UI</h3>
<p>Dark theme with glassmorphism and animations.</p>
</div>
</section>
<section class="screens" id="screens">
<h2>Prototype Screens</h2>
<div class="screen-grid">
<div class="screen-card">
<h4>Login Screen</h4>
</div>
<div class="screen-card">
<h4>Dashboard</h4>
</div>
<div class="screen-card">
<h4>Profile</h4>
</div>
<div class="screen-card">
<h4>Settings</h4>
</div>
</div>
</section>
<footer id="contact">
<h3>Thank You</h3>
<p>Portfolio Ready Interactive Prototype Project</p>
</footer>
<script src="script.js"></script>
</body>
</html>