-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (82 loc) · 5.14 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
<!DOCTYPE html>
<html>
<!-- Head : All metadata and HTML information goes here -->
<head>
<!--Website Metadata-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My Website and Blog!">
<meta name="keywords" content="Programming, coding, student, streaming, gaming, Nion, DAK">
<meta name="author" content="DAK">
<link rel="icon" type="image/png" href="./Assets/Images/favicon.ico">
<link rel="stylesheet" href="./Assets/Stylesheet/style.css">
<!--Website Title-->
<title>.DAK // Welcome!</title>
</head>
<!-- Body : The Website content below is displayed on the browser -->
<body>
<!-- Header : The elements which are displayed at the top of the page -->
<header>
<!-- Navigation Menu : Displays a list of other accessible pages -->
<nav>
<!-- List of the pages, hyperlinking the same to the target -->
<ul>
<li class="current"><img src="./Assets/Images/branding.png" width=65px"></li>
<a href="./Assets/Pages/Blog.html"><li>Blog</li></a>
<a href="./Assets/Pages/Mixtape.html"><li>MixTape</li></a>
<a href="./Assets/Pages/Contact.html"><li>Contact Me</li></a>
<a href="https://dak404.github.io/Truncheon"><li><img src = "Assets/Images/Logo.png" width="130px"></li></a>
</ul>
</nav>
</header>
<!-- Section "Newsletter" : Display the news here -->
<section id="newsletter">
<!-- Marquee : Move the news right to left to read it -->
<marquee onmouseover="this.stop();" onmouseout="this.start();">// Redesigned the website (again) // Have been updating Cataphract source code lately. Its almost complete, need to just work on FileManagement.java // May merge the Cataphract source code back into Truncheon. //</marquee>
</section>
<!-- Showcase : The Intro shown in index.html page -->
<!-- <section id="showcase">
<div class="container">
<h1>DEEPAK ANIL KUMAR</h1>
</div>
</section> -->
<!-- summary : Display the highlightable skills and all here -->
<!-- <section id="summary">
<div class="container">
<!--Box 1 -->
<!-- <div class="summary-content">
<h3>Gaming</h3>
<p>I'm a passionate gamer, who loves to play games and understand how video games work.</p>
</div> -->
<!--Box 2 -->
<!-- <div class="summary-content">
<h3>Coding</h3>
<p>Knowing a variety of programming languages, I love to code and make applications which are fast and secure. They are opensource too!</p>
</div> -->
<!--Box 3 -->
<!-- <div class="summary-content">
<h3>Streaming</h3>
<p>I stream games occasionally, but I plan to cover more content and stream more often when time permits!</p>
</div>
</div>
</section> -->
<div class="bg-img">
<div class="container" id="introduction">
<h1>DEEPAK ANIL KUMAR</h1>
<div id="subtitle">Gamer. Programmer. Occasional Streamer.</div><BR>
<p>Welcome to my website!</p>
<p>I am a software geek who likes to write code and play video games (while trying to understand the way it works). I occasionally stream on Twitch when I play video games or continue to work on my projects. The code I write is generally open source and can be found in my GitHub repositories.</p>
<p><img src="./Assets/Images/Contact/code.png" width="20px"> Currently working on Cataphract: a cross-platform and open source shell written in Java.</p>
<p><img src="./Assets/Images/Contact/pl.png" width="20px"> Proficient in Java, Linux Shell Scriping, Windows Command Scripting and Web Development (HTML, CSS, JavaScript). I am familiar with C/C++, C# and Python. I am keen on the topics of Operating System concepts and System Software.</p>
<p><img src="./Assets/Images/Contact/ghost.png" width="20px"> Interested in gaming, I play a few First Person Shooter and Racing games, which may be streamed on Twitch!</p>
<p><img src="./Assets/Images/Contact/blog.png" width="20px"> You can find my blogs here, about my projects or anything related to technology. Check it out!</p>
<BR>
<p>I have completed my Masters in Computer Applications. I am proficient in system administration and daily drive Linux (OpenSUSE Tumbleweed) and keen in UI/UX design.</p>
</div>
</div>
<!-- Footer : The elements which are displayed at the bottom of the page -->
<footer>
<p>Last Updated On: 22-May-2024</p>
</footer>
</body>
</html>