Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
DPEIW authored May 22, 2024
1 parent 4c1ee46 commit 8361bb2
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 4 deletions.
54 changes: 54 additions & 0 deletions Week 1/Week1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICTS Job Shadow Index</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #b31d0f;
background-color: #fafafa;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #b31d0f;
}
p {
margin-bottom: 20px;
}
button {
color: #fafafa;
background-color: #b31d0f;
}

</style>
</head>
<body>
<div class="container">
<header>
<h1>Week 1 Activities at ICTS </h1>
<nav>
<button onclick="window.location.href='../index.html'">Index</button>
</nav>
</header>
<main>
<section id="Week 1">
<h2>Week 1</h2>
<p>Python notebooks and Markdown files of activities of Week 1</p>
</section>
<!-- Add your portfolio items here -->
</section>
</main>
<footer>
<!-- Add footer content if needed -->
</footer>
</div>
</body>
</html>
53 changes: 53 additions & 0 deletions Week 2/Week2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICTS Job Shadow Index</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #b31d0f;
background-color: #fafafa;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #b31d0f;
}
p {
margin-bottom: 20px;
}
button {
color: #fafafa;
background-color: #b31d0f;
}

</style>
</head>
<body>
<div class="container">
<header>
<h1>Week 2 Activities at ICTS</h1>
<nav>
<button onclick="window.location.href='../index.html'">Index</button>
</nav>
</header>
<main>
<section id="Week 2">
<h2>Week 2</h2>
<body>Python notebooks and Markdown files of activities of Week 2</body>
<!-- Add your portfolio items here -->
</section>
</main>
<footer>
<!-- Add footer content if needed -->
</footer>
</div>
</body>
</html>
53 changes: 53 additions & 0 deletions Week 3/Week3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICTS Job Shadow Index</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #b31d0f;
background-color: #fafafa;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #b31d0f;
}
p {
margin-bottom: 20px;
}
button {
color: #fafafa;
background-color: #b31d0f;
}

</style>
</head>
<body>
<div class="container">
<header>
<h1>Week 3 Activities at ICTS</h1>
<nav>
<button onclick="window.location.href='../index.html'">Index</button>
</nav>
</header>
<main>
<section id="Week 2">
<h2>Week 3</h2>
<body>Python notebooks and Markdown files of activities of Week 3</body>
<!-- Add your portfolio items here -->
</section>
</main>
<footer>
<!-- Add footer content if needed -->
</footer>
</div>
</body>
</html>
13 changes: 9 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,16 @@
padding: 20px;
}
h1, h2 {
color: #000;
color: #b31d0f;
}
p {
margin-bottom: 20px;
}
button {
color: #fafafa;
background-color: #b31d0f;
}

</style>
</head>
<body>
Expand All @@ -34,9 +39,9 @@ <h1>Index of what I did in ICTS</h1>
</nav>
</header>
<nav>
<button onclick="window.location.href='week1.html'">Week 1</button>
<button onclick="window.location.href='week2.html'">Week 2</button>
<button onclick="window.location.href='week3.html'">Week 3</button>
<button onclick="window.location.href='Week%201/week1.html'">Week 1</button>
<button onclick="window.location.href='Week%202/week2.html'">Week 2</button>
<button onclick="window.location.href='Week%203/week3.html'">Week 3</button>
</nav>
<footer>
<!-- Add footer content if needed -->
Expand Down

0 comments on commit 8361bb2

Please sign in to comment.