-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 3.77 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!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 {
display: inline-block;
padding: 10px 20px;
color: #fafafa; /* White text */
background-color: #b31d0f; /* Red background */
text-decoration: none;
border-radius: 5px;
border: none;
font-weight: bold;
text-align: center;
cursor: pointer;
transition: background-color 0.3s ease;
}
.moveimage
{
position: relative;
right: 180px;
}
</style>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<img src="images/ICTS_logo.png" alt="ICTS_logo" align = "top" class="moveimage">
<!-- see if the ICTS logo is allowed-->
<h1>ICTS Job Shadow Index</h1>
<nav>
<a href="Week_1/Week1.html".html” onclick=“window.open(Week1.html’, ‘_self’);”>
<button> Week 1 </button>
</a>
<a href="Week_2/Week2.html".html” onclick=“window.open(Week2.html’, ‘_self’);”>
<button> Week 2 </button>
</a>
<a href="Week_3/Week3.html".html” onclick=“window.open(Week3.html’, ‘_self’);”>
<button> Week 3 </button>
</a>
<a href="Week_4/Week4.html".html” onclick=“window.open(Week4.html’, ‘_self’);”>
<button> Week 4 </button>
</a>
<a href="About/About.html".html” onclick=“window.open(About.html’, ‘_self’);”>
<button> About </button>
</a>
</nav>
</header>
<br>
<paragraph>
I am Pranav and I am a grade 12 IBDP student at OWIS. Over the summer of 2024, I did a job shadow program under Dr. Vaishak Prasad at the International Center for Theoretical Sciences.
<br> </br>
A Job shadow program helps students understand being a part of a professional organization. It demonstrates interest in research and serves as an orientation to working in that respective field. As I am interested in pursuing computer/electrical engineering for my further studies, and my hobbies (computing, computer hardware, 3D modeling, and Python programming) revolve around similar disciplines, I nominated ICTS for this experience. The research done here makes use of computation methods extensively and the learning would help with my future endeavors.
<br> </br>
During the program, I observed the work done at this research institution, the tools and methods used for that work and understood the process by which the researchers achieve their professional goals. I also attended group meetings, faculty seminars and did some original Python work using the newly acquired skills.
<br> </br>
This is a compilation of all the resources created during the Job Shadow program.
<p><a href="https://github.com/DPEIW/ICTSjobshadow" target="_blank" class="button">View the Github Repository</a></p>
<h1>Read the full report here:</h1>
<iframe src="ICTS_draft2.pdf" width="100%" height="600px">
This browser does not support PDFs. Please download the PDF to view it: <a href="ICTS_draft 1.pdf">Download PDF</a>.
</iframe>
</paragraph>
<footer>
<!-- Add footer content if needed -->
</footer>
</div>
</body>
</html>