-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (93 loc) · 3.53 KB
/
index.html
File metadata and controls
106 lines (93 loc) · 3.53 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
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
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Suim Kim | Web Development Portfolio</title>
<link rel="stylesheet" href="styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet" />
</head>
<body>
<header>
<h1>Suim Kim's Web Portfolio</h1>
<nav>
<a href="#about">About Me</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<img src="image1.png" alt="banner">
</header>
<section id="about" class="section">
<h2>About Me</h2>
<div class="about-content">
<img src="about.jpg" alt="about">
<p>Hi my name is Suim Kim! I am a junior majoring in Art&Technology in Sogang University.
I am currently an exchange student in Penn State.
I am passionate about web development, design, and creating interactive digital experiences.
This portfolio showcases my class projects in IST 250: Introduction to Web Design and Development through the semester.
</p>
</div>
</section>
<section id="projects" class="section">
<h2>Projects</h2>
<div class="portfolio-grid">
<div class="project">
<img src="screenshots/practice1.png" alt="Practice 1 Screenshot">
<h3>Practice Activity 1</h3>
<a href="practice1/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/practice2.png" alt="Practice 2 Screenshot">
<h3>Practice Activity 2</h3>
<a href="practice2/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/practice3.png" alt="Practice 3 Screenshot">
<h3>Practice Activity 3</h3>
<a href="practice3/album/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/partnerlab1.png" alt="Partner Lab 1 Screenshot">
<h3>Partner Lab 1</h3>
<a href="partner1/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/partnerlab2.png" alt="Partner Lab 2 Screenshot">
<h3>Partner Lab 2</h3>
<a href="partner2/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/individual1.png" alt="Assignment 1 Screenshot">
<h3>Assignment 1</h3>
<a href="assignment1/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/individual2.png" alt="Assignment 2 Screenshot">
<h3>Assignment 2</h3>
<a href="assignment2/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/individual3.png" alt="Assignment 3 Screenshot">
<h3>Assignment 3</h3>
<a href="assignment3/index.html">Visit Site</a>
</div>
<div class="project">
<img src="screenshots/individual4.png" alt="Assignment 4 Screenshot">
<h3>Assignment 4</h3>
<a href="assignment4/index.html">Visit Site</a>
</div>
</div>
</section>
<section id="contact" class="section contact-section">
<h2>Contact</h2>
<p>If you'd like to connect or learn more about my work, feel free to reach out!</p>
<ul>
<li>Phone: (814) 699 - 2369</li>
<li>Email: skk6432@psu.edu</li>
</ul>
</section>
<footer>
<p>© 2025 Suim Kim IST 250. All rights reserved.</p>
</footer>
</body>
</html>