-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d975b7c
commit a0b3048
Showing
44 changed files
with
94 additions
and
26 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Mehul Goel's Portfolio</title> | ||
<!-- Current Fonts: https://fonts.google.com/share?selection.family=Righteous%7CSource%20Sans%20Pro--> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Righteous&family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" type="text/css" href="css/utlities.css"> | ||
<link rel="stylesheet" type="text/css" href="css/style.css"> | ||
</head> | ||
<body> | ||
<!-- Navigation bar --> | ||
<nav> | ||
<div class="logo-container"> | ||
<img src="logos\png\logo-no-background.png" alt="Mehul Goel's logo"> | ||
</div> | ||
<div class="nav-links"> | ||
<a href="#">Home</a> | ||
<a href="#about">About Me</a> | ||
<a href="#portfolio">Portfolio</a> | ||
<a href="mailto:[email protected]">Email Me</a> | ||
</div> | ||
</nav> | ||
|
||
|
||
<!-- Home page --> | ||
<section class="welcome-section"> | ||
<div class="image-wrapper"> | ||
<img src="Images\Person-Coding.png" alt="Mehul Goel"> | ||
</div> | ||
<div class="text-wrapper"> | ||
<h1>Hello, <br>I'm Mehul.</h1> | ||
</div> | ||
</section> | ||
|
||
<!-- About Me section --> | ||
<section class="about-section"> | ||
<div class = "text-wrapper"> | ||
<p>I'm an undergraduate freshman within the School of Computer Science at Carnegie Mellon University. I am always looking at new ways to develop my skills in CS and life in general. | ||
In my free time, I am constantly working with robots, playing board games with my friends, or building new hobbies. I am always interested in trying new things, so feel free | ||
to contact me at any time with fresh opportunities!</p> | ||
<div class = "Image Button"> | ||
<img src="Images/Icons/pdf.png" alt = "PDF Icon"> | ||
<a href="files/Mehul Goel - Resume.pdf">My Resume</a> | ||
</div> | ||
<a href="#">Learn more about me</a> <!-- TODO: Fix this section to include a full blown about page at one point--> | ||
</div> | ||
</section> | ||
|
||
<!-- Projects section --> | ||
<section id="projects"> | ||
<!-- Add content for the Projects section here --> | ||
</section> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
body { | ||
margin: 0; | ||
background-color: #233D4D; | ||
} | ||
|
||
.welcome-section { | ||
} | ||
|
||
.text-wrapper { | ||
max-width: fit-content; | ||
margin-left: auto; | ||
margin-right: auto; | ||
align-self: center; | ||
} | ||
|
||
.text-wrapper h3 { | ||
max-width: 0; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Mehul Goel's Portfolio</title> | ||
<title>Mehul Goel</title> | ||
<!-- Current Fonts: https://fonts.google.com/share?selection.family=Righteous%7CSource%20Sans%20Pro--> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Righteous&family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" type="text/css" href="css/utlities.css"> | ||
<link rel="stylesheet" type="text/css" href="css/style.css"> | ||
<link rel="stylesheet" type="text/css" href="css/home.css"> | ||
</head> | ||
<body> | ||
<!-- Navigation bar --> | ||
<nav> | ||
<!-- <nav> | ||
<div class="logo-container"> | ||
<img src="logos\png\logo-no-background.png" alt="Mehul Goel's logo"> | ||
<img src="logos\png\logo-no-background.png" alt="Logo"> | ||
</div> | ||
<div class="nav-links"> | ||
<a href="#">Home</a> | ||
<a href="#about">About Me</a> | ||
<a href="#portfolio">Professinal Experience</a> | ||
<a href="#portfolio">Portfolio</a> | ||
<a href="mailto:[email protected]">Email Me</a> | ||
<a href="#portfolio">Hobbies</a> | ||
<a href="mailto:[email protected]">GitHub</a> | ||
<a href="mailto:[email protected]">Linkedin</a> | ||
</div> | ||
</nav> | ||
|
||
</nav> --> | ||
|
||
<!-- Home page --> | ||
<section class="welcome-section"> | ||
|
@@ -35,17 +36,8 @@ <h1>Hello, <br>I'm Mehul.</h1> | |
</section> | ||
|
||
<!-- About Me section --> | ||
<section class="about-section"> | ||
<div class = "text-wrapper"> | ||
<p>I'm an undergraduate freshman within the School of Computer Science at Carnegie Mellon University. I am always looking at new ways to develop my skills in CS and life in general. | ||
In my free time, I am constantly working with robots, playing board games with my friends, or building new hobbies. I am always interested in trying new things, so feel free | ||
to contact me at any time with fresh opportunities!</p> | ||
<div class = "Image Button"> | ||
<img src="Images/Icons/pdf.png" alt = "PDF Icon"> | ||
<a href="files/Mehul Goel - Resume.pdf">My Resume</a> | ||
</div> | ||
<a href="#">Learn more about me</a> <!-- TODO: Fix this section to include a full blown about page at one point--> | ||
</div> | ||
<section id="about"> | ||
<!-- Add content for the About Me section here --> | ||
</section> | ||
|
||
<!-- Projects section --> | ||
|