코딩두의 포트폴리오

HTML 파일 생성 본문

2024 Tourism Data Utilization Contest/Spring Boot

HTML 파일 생성

코딩두 2024. 6. 20. 20:39

 

 

[코드 작성]

<!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