diff options
Diffstat (limited to 'data/about.html')
-rwxr-xr-x | data/about.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/data/about.html b/data/about.html new file mode 100755 index 0000000..de7dd63 --- /dev/null +++ b/data/about.html @@ -0,0 +1,70 @@ +<!DOCTYPE html> + +<html> + <head> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> + <link rel='stylesheet' type='text/css' href='style.css'> + <meta property="og:title" content="Ghativega.in"> + <meta property="og:description" content="Personal site of arnavbhatt288."> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <title>Ghativega - About</title> + <style> + img { border: none ;} + </style> + </head> + +<body> + <div class = logo><img src="assets/images/logo.png" alt="Ghativega"></div> + <ul class = navbar> + <li><a href="index.html">Home</a></li> + <li><a class="active" href="about.html">About</a></li> + <li><a href="contact.html">Contact</a></li> + <li><a href="softwares.html">Softwares</a></li> + </ul> + <hr> + + <main> + <h3>Introduction</h3> + <p>Hi there. My name is Arnav Bhatt and I go by the internet alias as arnavbhatt288.<br>I am 18 years old and a self-taught programmer with C language being my current expertise while also exploring other programming languages to learn.</p> + <br> + + <h3>Career</h3> + <p>Currently a student in a college pursuing for Bachelor of Technology in Computer Science. On my free time I mainly contribute to open source projects but also occassionally create my own projects as well.</p> + <br> + + <h3>Contributions</h3> + <table> + <tr> + <th id = "border-special">Name</th> + <th id = "border-special">Description</th> + <th>Contributions</th> + </tr> + + <tr> + <td><a href = "https://reactos.org">ReactOS</a></td> + <td>Open source Windows XP/2003 clone written completely from scratch</td> + <td><a href = "https://github.com/reactos/reactos/commits?author=arnavbhatt288">Translations, MSGINA Shutdown/Logoff dialog box overhaul, SYSDM Environment dialog box overhaul</a></td> + </tr> + + <tr> + <td><a href = "https://www.haiku-os.org">Haiku</a></td> + <td>Open source spiritual successor to BeOS</td> + <td><a href = "https://github.com/haikuports/haikuports/commits/master?author=arnavbhatt288">Ported softwares to Haiku</a></td> + </tr> + + <tr> + <td><a href = "https://postmarketos.org">postmarketOS</a></td> + <td>Linux distro for phones and other mobile devices</td> + <td><a href = "https://wiki.postmarketos.org/wiki/Samsung_Galaxy_Grand_2_(samsung-ms013g)">Ported pmOS to Samsung Galaxy Grand 2</a></td> + </tr> + </table> + <br> + + </main> + + <div class = footer> + <p>Copyright 2022 ghativega.in</p> + </div> +</body> +</html> |