-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (135 loc) · 5 KB
/
index.html
File metadata and controls
135 lines (135 loc) · 5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HighSecurity | Welcome</title>
<style>
:root {
--primary: #5b3aff;
--secondary: #8f63df;
--background: linear-gradient(135deg, var(--primary), var(--secondary));
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
color: #fff;
background: var(--background);
overflow-x: hidden;
}
nav {
position: fixed;
top:0;
width:100%;
background: rgba(0,0,0,0.3);
display:flex;
justify-content:space-between;
align-items:center;
padding:1rem 2rem;
backdrop-filter: blur(10px);
z-index:1000;
}
nav .logo { font-size:1.5rem; font-weight:bold; }
nav ul { display:flex; list-style:none; gap:1.5rem; }
nav a { color:#fff; text-decoration:none; font-weight:500; transition:color 0.3s; }
nav a:hover { color:#d3c6ff; }
.section {
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:2rem;
}
.hero { flex-direction:column; text-align:center; }
.hero h1 { font-size:3rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; max-width:600px; }
.about, .portfolio, .contact { background: rgba(255,255,255,0.05); margin:2rem auto; border-radius:12px; padding:2rem; width:80%; max-width:1000px; backdrop-filter:blur(20px); box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.about h2, .portfolio h2, .contact h2 { font-size:2rem; margin-bottom:1rem; }
.about p { line-height:1.6; }
.portfolio-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; }
.project-card { background:rgba(255,255,255,0.1); padding:1.5rem; border-radius:8px; box-shadow:0 4px 16px rgba(0,0,0,0.2); text-align:center; transition:transform 0.3s, box-shadow 0.3s; }
.project-card:hover { transform: translateY(-10px); box-shadow:0 8px 24px rgba(0,0,0,0.3); }
.contact form { display:flex; flex-direction:column; gap:1rem; }
.contact input, .contact textarea { padding:0.8rem 1rem; border:none; border-radius:6px; font-size:1rem; width:100%; }
.contact button { padding:0.8rem 1.5rem; border:none; background:var(--primary); color:#fff; font-size:1rem; border-radius:6px; cursor:pointer; transition:background 0.3s; }
.contact button:hover { background:var(--secondary); }
.cursor { position:fixed; top:0; left:0; width:20px; height:20px; border-radius:50%; background:rgba(255,255,255,0.2); border:2px solid rgba(255,255,255,0.5); pointer-events:none; transform:translate(-50%, -50%); transition:transform 0.1s ease; z-index:10000; }
</style>
</head>
<body>
<div class="cursor"></div>
<nav>
<div class="logo">HighSecurity</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home" class="section hero">
<div>
<h1>Welcome to HighSecurity</h1>
<p>Your safety and creativity matters. Explore my world of secure, innovative solutions and creative experiments.</p>
</div>
</section>
<section id="about" class="section">
<div class="about">
<h2>About Me</h2>
<p>Hello! I'm HighSecurity, a passionate developer with a keen eye for secure systems and beautiful interfaces. This site will be home to my projects, experiments, and professional journey.</p>
</div>
</section>
<section id="portfolio" class="section">
<div class="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-grid">
<div class="project-card">
<h3>Project One</h3>
<p>Coming soon...</p>
</div>
<div class="project-card">
<h3>Project Two</h3>
<p>Coming soon...</p>
</div>
<div class="project-card">
<h3>Project Three</h3>
<p>Coming soon...</p>
</div>
</div>
</div>
</section>
<section id="contact" class="section">
<div class="contact">
<h2>Contact</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea rows="5" placeholder="Your Message" required></textarea>
<button type="submit" onclick="event.preventDefault(); alert('Thanks for reaching out!');">Send Message</button>
</form>
</div>
</section>
<script>
const cursor = document.querySelector('.cursor');
document.addEventListener('mousemove', (e) => {
cursor.style.transform = `translate(${e.clientX}px, ${e.clientY}px)`;
});
document.querySelectorAll('a').forEach(link => {
link.addEventListener('mouseover', () => {
cursor.style.transform += ' scale(2)';
});
link.addEventListener('mouseleave', () => {
cursor.style.transform = cursor.style.transform.replace(/ scale\(2\)/, '');
});
});
document.querySelectorAll('button').forEach(btn => {
btn.addEventListener('mouseover', () => {
cursor.style.transform += ' scale(2)';
});
btn.addEventListener('mouseleave', () => {
cursor.style.transform = cursor.style.transform.replace(/ scale\(2\)/, '');
});
});
</script>
</body>
</html>