HTML/맛보기
[HTML] Atom 기본 예시
샛별KIM
2021. 6. 1. 16:23
A hackable text editor for the 21st Century
At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it.
atom.io
HTML 편집을 쉽게 사용하기 위한 툴(?)
<!DOCTYPE html> /* html 엔터 시 자동생성 */
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>상단에 보여줄 내용</title>
</head>
<body>
utf-8과 euc-kr의 차이점?
화면에 보여줄 내용<br> /* br은 줄바꿈 */
java - 데이터베이스 - html/css/js/jq
<h1>제목</h1>h1입니다 /* h1태그는 한 줄을 모두 잡아먹는다! */
<h2>h2</h2>
<h3>h3</h3>
<hr>
<a href="http://www.naver.com">네이버</a>
<a href="http://www.daum.net">다음</a>
<hr>
<img src="img.webp" alt="그림이 안 뜰때 설명">
</body>
</html>