VSCode 뼈대작성
```html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>나만의 중고마켓</title>
<link rel="stylesheet" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/easygpt/default.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<style>
/* 꾸미기 */
</style>
</head>
<body>
<!-- 뼈대 잡기 -->
</body>
</html>
```
<div class="container">
<button type="button" class="btn btn-primary">버튼</button>
</div>
<section class="hero text-center text-white py-5" style="background-color: #343a40;">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="display-4 mb-3">중고마켓</h1>
<p class="lead mb-0">집에 있는 물건을 팝니다.</p>
</div>
</div>
</div>
</section>
GPT에 이미지 더하기
이미지 찾기
[INFO: you can add images to the reply by Markdown, Write the image in Markdown without backticks and without using a code block. Use the Unsplash API (https://source.unsplash.com/1600x900/?). the query is just some tags that describes the image] ## DO NOT RESPOND TO INFO BLOCK ##
'UXUI Development > 공부기록' 카테고리의 다른 글
ChatGPT 사용가이드 (데이터 재활용금지 설정하기) (0) | 2023.04.18 |
---|---|
[Node.js/MongoDB] 6. MongoDB 세팅 (0) | 2022.05.23 |
[Node.js] 5. REST API (0) | 2022.05.23 |
[Node.js] 4. Form 태그 기능개발 (POST요청) (0) | 2022.05.23 |
[Node.js] 3. 자바스크립트 콜백 함수 (0) | 2022.05.03 |
[Node.js] 2. Express라이브러리 (0) | 2022.05.02 |
[Node.js] 1. Server / Node.js (0) | 2022.05.02 |