Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- colab
- Resnet
- Github
- Python
- VSCode
- Rocky Linux
- Spring
- ChatGPT
- OSS
- 코딩도장
- KAKAO
- C언어
- Docker
- 인터넷의이해
- Powershell
- suricata
- cloud
- Database
- GoogleDrive
- 고등학생 대상
- ICT멘토링
- git
- 국가과제
- Machine Learning
- LINUX MASTER
- 크롤링 개발
- API
- rnn
- Kubernetes
- Spring Boot
Archives
- Today
- Total
코딩두의 포트폴리오
HTML 파일 생성 본문
[코드 작성]
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Tourist Spots</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<h1>Tourist Spots</h1>
<ul>
<li th:each="spot : ${touristSpots}">
<span th:text="${spot.name}">Tourist Spot Name</span>:
<span th:text="${spot.description}">Description</span>
</li>
</ul>
</body>
</html>
'2024 Tourism Data Utilization Contest > Spring Boot' 카테고리의 다른 글
컨트롤러 수정 (0) | 2024.06.20 |
---|---|
Thymeleaf dependency 추가 (0) | 2024.06.20 |
데이터 로더 (0) | 2024.06.20 |
설정 파일 (0) | 2024.06.20 |
컨트롤러 (0) | 2024.06.20 |