1. HTML/CSS 배운내용 요약
HTML/CSS 기초문법 및 주석에 대한 설명
1-1. HTML코드
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> LOGIN </title>
</head>
<body>
<h1>Login</h1>
<form>
ID : <input class="login_inputs" type="text">
<br>
PW : <input class="login_inputs" type="password">
<br>
<input id="btn_login" type="button" value="login">
</form>
</body>
</html>
1-2. CSS코드
h1 {
color: rgb(173,6,6);
text-align: center;
}
.login_inputs {
font-size: 25px;
}
#btn_login {
font-size: 30px;
width: 100px;
height: 30px;
}
See the Pen Untitled by Sungman Cho (@Sungman-Cho) on CodePen.
2. 느낀점
리마인드
3. Git업로드
'클라우딩 어플리케이션 엔지니어링 TIL > 2주차' 카테고리의 다른 글
[파트20]프론트엔드(Javascript)실습 (0) | 2024.04.19 |
---|---|
[파트19]Javascript의 이해 (0) | 2024.04.19 |