From defb19e922bb09e52c495a9393f35479d48b1203 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Thu, 10 Aug 2023 17:04:42 +0530 Subject: Lab01: Create Basic Portfolio website w table --- Lab01/index.html | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Lab01/style.css | 57 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 135 insertions(+) create mode 100644 Lab01/index.html create mode 100644 Lab01/style.css diff --git a/Lab01/index.html b/Lab01/index.html new file mode 100644 index 0000000..482ddf6 --- /dev/null +++ b/Lab01/index.html @@ -0,0 +1,78 @@ + + + + + + + + Saumit's Portfolio Website + + +

Saumit's Portfolio Website

+ +

Welcome to my website!

+
+

About Me

+

My name is Saumit Dinesan. I'm a final year undergrad at Sikkim Manipal Institute of Technology, currently pursuing pursuing B.Tech Degree in Informational Technology with Honors in CyberSecurity.

+

I'm a free and open source software enthusiast with a strong focus on development in C, Python and Golang.

+

I initially started out with making a career in Systems Administration but after researching and getting to know the industry demands I upskilled myself to be proficient in Cloud and DevOps domains.

+
+ +
+

My Skills

+ +
+
+

My Projects

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. NoProject NameTech Stack UsedLicenseGithub Link
1.Auto-Captive Portal LoginPython, Selenium WebdriverGPL V3[Link]
2.OpenCV-Facial-Recognition-RPI4Raspberry Pi 4, Camera Module, OpenCV-HaarCascade LBPH, Flask Server, 16x2 LED Screen MIT[Link]
3.BashModoro.shBash, Libnotify, TTSGPL V3[Link]
+ +
+
+

Contact

+

Don't im shy.

+

Else justsaumit@protonmail.com [mailto]

+ + \ No newline at end of file diff --git a/Lab01/style.css b/Lab01/style.css new file mode 100644 index 0000000..cc34197 --- /dev/null +++ b/Lab01/style.css @@ -0,0 +1,57 @@ +body{ + padding: 0; + margin: 5%; + font-family: openSans, sans-serif; + color: #ffffff; + background: #2a2525; +} + +.header{ + text-align: center; + margin: 0; + padding: 5px 5px; + color: #f94413; +} + +nav{ + text-align: center; +} +nav ul{ + margin: 0; + list-style-type: none; + padding: 5px; +} +nav li { + display: inline-block; + margin: 2px; + padding: 2px; +} + +a{ + text-decoration: none; + color: rgb(26, 202, 237); +} + +a:hover{ + text-decoration: underline; +} + +p { + line-height: 1.25; +} + +td { + padding-left: 20px;padding-right: 20px; +} + +.section{ + padding: 25px; +} + +pre{ + padding: 10px; + border-radius: 10px; + white-space: pre-wrap; + word-wrap: break-word; + text-align: justify; +} -- cgit v1.2.3