-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (80 loc) · 3.11 KB
/
index.html
File metadata and controls
94 lines (80 loc) · 3.11 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
<!DOCTYPE html>
<html>
<head><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Expires" content="-1"><style type="text/css">.lw { font-size: 60px; }</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nikhil</title>
<style>
@font-face {
font-family: 'MyCustomFont';
src: url('fonts/Inconsolata-Regular.ttf') format('truetype');
}
body {
margin: 0;
padding: 0;
font-family: 'MyCustomFont', sans-serif;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url('https://cdn.discordapp.com/attachments/732714336862339103/1243396935340003420/Scan_20-modified.jpeg?ex=66515322&is=665001a2&hm=95aae7390e71a18287cbd3e383f37e4ebd0434b83308bad24a97ebc3c223fa67&');
background-size: cover;
background-position: center;
cursor: url('https://cdn.discordapp.com/attachments/732714336862339103/1243556871814512640/icons8-plus-24.png?ex=6651e816&is=66509696&hm=422b84e8125ee68020e049e20dc975f0e7180885463c261f336e2e6ab52ab1e0&'), auto; /* Custom cursor */
}
.container {
text-align: center;
background: rgba(255, 255, 255, 0.9);
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin: 0;
font-size: 36px;
color: #999999;
font-weight: normal;
}
.buttons {
margin-top: 30px;
}
button {
display: block;
width: 120px;
padding: 5px;
margin: 10px auto;
font-size: 16px;
font-family: 'MyCustomFont', Arial, sans-serif;
color: #999999;
background-color: #fff;
border: 3px solid #fff;
border-radius: 5px;
cursor: url('https://cdn.discordapp.com/attachments/732714336862339103/1243556871814512640/icons8-plus-24.png?ex=6651e816&is=66509696&hm=422b84e8125ee68020e049e20dc975f0e7180885463c261f336e2e6ab52ab1e0&'), auto; /* Custom cursor */
transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
button:hover {
background-color: #fff;
color: #333;
border-color: #000;
}
button:active {
background-color: #e0e0e0;
color: #000;
border-color: #bbb;
}
</style>
</head>
<body>
<div class="container">
<h1>nikhil </br >iyer</h1>
<div class="buttons">
<button onclick="alert('Projects button clicked')">PROJECTS</button>
<button onclick="alert('Design button clicked')">DESIGN</button>
<button onclick="alert('Contact button clicked')">CONTACT</button>
</div>
</div>
<script>
// ...
</script>
<script>// ...</script></body>