-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.69 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.69 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>My Queen’s Student Page</title>
<link rel="stylesheet" href="style.css"/> <!-- do not change this line -->
</head>
<body>
<header>
<h1>Welcome to Rajin Sharwar's Page</h1> <!-- change this heading to your name -->
</header>
<main>
<!-- ====== ABOUT SECTION (edit the text) ====== -->
<h2>About Me</h2>
<p>I am a student at Queen’s Smith Engineering, but am taking courses from the School of Computing for a potential transfer next year. I’m interested in code architecture, Backend Engineering, and DevOps.</p>
<!-- ====== PHOTO (upload me.jpg to repo root, then update the src below) ====== -->
<img src="me.jpg" alt="Your Name portrait" width="240" height="240" />
<!-- ====== PROJECTS/COURSES (add or rename items to courses instead of projects) ====== -->
<h2>Projects</h2>
<ul>
<li>LaunchWP (https://launchwp.io) — A WordPress server control, to manage, host, and install WordPress in a VPS or Cloud provider, without writing a single line of code.</li>
<li>Serve Static WordPress Plugin (https://github.com/Rajinsharwar/Serve-Static) — Caches the WordPress pages as raw HTML, CSS, and JS, and serves them to the visitors to avoid PHP overload.</li>
</ul>
<!-- ====== CONTACT (update your links) ====== -->
<h2>Contact</h2>
<p>Email: <a href="mailto:24jbt@queensu.ca">24jbt@queensu.ca</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/rajinsharwar/">https://www.linkedin.com/in/rajinsharwar/</a></p>
</main>
</body>
</html>