자기소개 섹션
Coddy HTML 여정의 Fundamentals 섹션에 포함된 레슨 — 60개 중 33번째.
챌린지
쉬움이것은 당신의 프로필입니다—사람들에게 당신이 누구인지 알려주세요!
- 프로필 사진을 추가한 후,
<div>를 생성하세요. - 그 안에
<h2>를 사용하여 'About Me'라고 적힌 제목을 추가하세요. 자신에 대해 짧게 소개하는<p>단락을 추가하세요.
예시:
- Hello! I'm a passionate web developer learning HTML basics. I enjoy coding and building creative projects.
직접 해보기
<!DOCTYPE html>
<html>
<body>
<!-- Header Section -->
<div>
<h1>John Doe</h1>
<p>Web Developer | Creative Thinker</p>
</div>
<!-- Profile Picture -->
<div>
<img src="https://storage.googleapis.com/coddy-15505.appspot.com/public/avatars/avatar25.png" alt="My profile picture" width="200" height="200" />
</div>
</body>
</html>