-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_portfolio.html
More file actions
106 lines (104 loc) · 3.35 KB
/
my_portfolio.html
File metadata and controls
106 lines (104 loc) · 3.35 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.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- 상단 -->
<header>
<nav class="topbar">
<h1>포트폴리오 과제</h1>
<ul class="nav-list">
<li><a href="#home">홈</a></li>
<li><a href="#intro">소개</a></li>
<li><a href="#projects">프로젝트</a></li>
<li><a href="#contact">연락처</a></li>
</ul>
</nav>
</header>
<!-- 중단 -->
<main>
<!-- 홈 -->
<section id="home">
<h1>안녕하세요, 도전과 성장을 좋아하는 김멋사입니다.</h1>
<p>웹 개발과 디자인에 열정을 가지고 있습니다</p>
</section>
<!-- 소개 -->
<section id="intro">
<h2>소개</h2>
<div class="intro-content">
<div class="profile">
<img src="img/image_profile.png" alt="프로필 이미지" />
</div>
<div class="intro-text">
<h3>자기소개</h3>
<p>
안녕하세요! 도전과 성장을 좋아하는 김멋사입니다. 사용자 경험을
중요시하며, 깔끔하고 효율적인 코드를 작성하기 위해 노력합니다.
</p>
<h3>기술 스택</h3>
<div class="skills">
<img
src="img/skills/AndroidStudio-Light.svg"
alt="AndroidStudio"
/>
<img src="img/skills/MySQL-Light.svg" alt="MySQL" />
<img src="img/skills/Spring-Light.svg" alt="Spring" />
<img src="img/skills/Kubernetes.svg" alt="Kubernetes" />
</div>
</div>
</div>
</section>
<!-- 프로젝트 -->
<section id="projects">
<h2>프로젝트</h2>
<div class="projects-content">
<div class="project">
<h3>프로젝트1</h3>
<p>간단한 설명이 들어갑니다.</p>
</div>
<div class="project">
<h3>프로젝트2</h3>
<p>간단한 설명이 들어갑니다.</p>
</div>
<div class="project">
<h3>프로젝트3</h3>
<p>간단한 설명이 들어갑니다.</p>
</div>
</div>
</section>
<!-- 연락처 -->
<section id="contact">
<h2>연락처</h2>
<div class="contact-content">
<div class="contact-info">
<h3>연락 정보</h3>
<p>
<img src="img/icon_email.png" alt="Email Icon" />email@example.com
</p>
<p>
<img
src="img/icon_github.png"
alt="Github Icon"
/>github.com/username
</p>
</div>
<form class="contact-form">
<input type="text" placeholder="이름" />
<input type="email" placeholder="이메일" />
<textarea placeholder="메시지"></textarea>
<button type="submit">보내기</button>
</form>
</div>
</section>
</main>
<!-- 하단 -->
<footer>
<p>© 2025 My Portfolio. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>