-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (139 loc) · 4.93 KB
/
index.html
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="project-files-app-logo-908193236 (1).png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Files</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #07beb8;
color: #c4fff9;
overflow: hidden;
position: relative;
}
header {
display: flex;
justify-content: left;
align-items: center;
background-color: rgba(247, 220, 184, 0.123);
color: #c4fff9;
padding: 1rem;
height: 50px; /* Adjust height as needed */
text-align: center;
}
header h1 {
margin: 0;
color:rgb(137, 255, 225);
}
section {
margin: 2rem;
padding: 1rem;
background-color: rgba(0, 255, 247, 0.075);
border-radius: 5px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
h2 {
color: #daf078;
}
.links a {
text-decoration: none;
color: #52fc9e;
}
.links a:hover {
text-decoration: underline;
}
.projects button, .tools button, .resources button {
background-color: #68d8d6;
color: #c4fff9;
border: none;
padding: 0.5rem 1rem;
border-radius: 5px;
cursor: pointer;
margin: 0.5rem 0;
transition: background-color 0.3s, transform 0.3s;
}
.projects button:hover, .tools button:hover, .resources button:hover {
background-color: #9ceaef;
transform: scale(1.05);
}
footer {
text-align: center;
padding: 0.40rem;
background-color: rgba(255, 255, 255, 0.13);
color: #c4fff9;
position: fixed;
bottom: 0;
width: 100%;
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-size: cover;
background-position: center;
background-image: url('galaxy-cosmic-3840x2160-14974.jpg');
background-size: cover;
}
img {
border-radius:15px;
margin-right: 15px;
}
</style>
</head>
<body>
<div class="background" role="img" aria-label="Galaxy background image"></div>
<header>
<img src="project-files-app-logo-908193236 (1).png" alt="Logo" height="50px" width="50px" id="1">
<h1>Project files</h1>
</header>
<main>
<section id="projects" class="projects">
<h1>Projects</h1>
<a href="https://github.com/MrHyplex9511/Project_files/tree/main/Data" target="_blank">
<button>View school projects</button>
</a>
<a href="https://www.github.com/MrHyplex9511" target="_blank">
<button>View personal projects</button>
</a>
</section>
<section id="technologies" class="technologies">
<h1>Work</h1>
<p>What i have worked on:</p>
<ul class="links">
<li><a>Python, Batch, HTML, VBS, CSS, JS, C, C++ and C#</a></li>
<li><a href="https://scratch.mit.edu/users/-Kingbro6-/" target="_blank">Scratch</a></li>
<li><a href="https://www.reddit.com/r/BlenderArt/comments/1cfxfue/godzilla_in_blender_eevee_4k/" target="_blank">Blender</a></li>
<li><a href="https://bit.ly/PFiles" target="_blank">My E-Commerce website</a></li>
</ul>
</section>
<section id="tools" class="tools">
<h1>Tools</h1>
<p>Some tools and IDEs I frequently use:</p>
<button onclick="window.open('https://code.visualstudio.com/', '_blank')">Visual Studio Code</button>
<button onclick="window.open('https://www.jetbrains.com/pycharm/', '_blank')">PyCharm</button>
<button onclick="window.open('https://www.sublimetext.com/', '_blank')">Sublime Text</button>
</section>
<section id="resources" class="resources">
<h1>Resources</h1>
<p>Useful resources for developers:</p>
<button onclick="window.open('https://stackoverflow.com/', '_blank')">Stack Overflow</button>
<button onclick="window.open('https://www.freecodecamp.org/', '_blank')">FreeCodeCamp</button>
<button onclick="window.open('https://www.codecademy.com/', '_blank')">Codecademy</button>
</section>
<section id="contact" class="contact">
<h1>Contact</h1>
<p>If you'd like to get in touch, feel free to reach out on <a href="https://www.linkedin.com/in/saumitrakoleshwar" target="_blank">LinkedIn</a>.</p>
</section>
</main>
<footer>
<p>2024 Saumitra Koleshwar. No rights reserved</p>
</footer>
</body>
</html>