Skip to content

Commit

Permalink
Updated portfolio.html to index.html
Browse files Browse the repository at this point in the history
updated portfolio.html to index.html for deployment and updated in portfolio.js
  • Loading branch information
pearll12 committed Aug 23, 2024
1 parent 5730bc8 commit f445ce9
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 48 deletions.
94 changes: 47 additions & 47 deletions portfolio.html → index.html
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pearl Vashistha| Jr Web Developer</title>

<link rel="stylesheet" href="styles/bootstrap.min.css" />
<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=Lora:ital,wght@0,400..700;1,400..700&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap"
rel="stylesheet"
/>
<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=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/portfolio.css" />
<link rel="stylesheet" href="styles/header.css" />
</head>
<body>
<!--Navbar : Home Projects Contact -->
<div class="header">
<div id="home" class="tiles">Home</div>
<div id="projects" class="tiles">Projects</div>
<div id="contact" class="tiles">Contact me</div>
</div>

<div class="section">
<div class="about-me">
<h1 class="typed">Hey, I'm <span class="name">Pearl</span>👋</h1>
<div class="innertext">
I am currently pursuing a B.Tech in Computer Science at Indira Gandhi
Delhi Technical University for Women, with an SGPA of 9.27. I expect
to graduate in 2027. I am a junior web developer with a solid
foundation in HTML, CSS, JavaScript, React, DBMS, and PHP.
</div>
</div>
<div class="pic-con">
<img class="my-pic" src="images/pearl.jpg" />
</div>
</div>
<script src="portfolio.js"></script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pearl Vashistha| Jr Web Developer</title>

<link rel="stylesheet" href="styles/bootstrap.min.css" />
<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=Lora:ital,wght@0,400..700;1,400..700&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap"
rel="stylesheet"
/>
<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=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/portfolio.css" />
<link rel="stylesheet" href="styles/header.css" />
</head>
<body>
<!--Navbar : Home Projects Contact -->
<div class="header">
<div id="home" class="tiles">Home</div>
<div id="projects" class="tiles">Projects</div>
<div id="contact" class="tiles">Contact me</div>
</div>

<div class="section">
<div class="about-me">
<h1 class="typed">Hey, I'm <span class="name">Pearl</span>👋</h1>
<div class="innertext">
I am currently pursuing a B.Tech in Computer Science at Indira Gandhi
Delhi Technical University for Women, with an SGPA of 9.27. I expect
to graduate in 2027. I am a junior web developer with a solid
foundation in HTML, CSS, JavaScript, React, DBMS, and PHP.
</div>
</div>
<div class="pic-con">
<img class="my-pic" src="images/pearl.jpg" />
</div>
</div>
<script src="portfolio.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ let project = document.querySelector("#projects");
let contact = document.querySelector("#contact");

home.addEventListener("click", () => {
window.location.href = "portfolio.html";
window.location.href = "index.html";
});

projects.addEventListener("click", () => {
Expand Down

0 comments on commit f445ce9

Please sign in to comment.