챗GPT나 바드를 통해 해외 현지 시간 출력을 할 수 있는 HTML 코드를 만들 수 있습니다. chatGPT 또는 구글 Bard에서 간단한 프롬프트 입력을 통해 현지 시간 코드 작성이 가능한데, 출력하고 싶은 특정 국가 또는 수도 현지 시간, 시간대, 출력 형식을 지정하면 됩니다.
명령 프롬프트 입력은 간단합니다. GPT 대화창을 통해 '티스토리 또는 워드프레스'에 적용가능한 (뉴욕)의 현재 시간 HTML 코드를 만들어줘'라고 입력합니다.
추가 프롬프트
시간 출력 형식은 시간과 날짜가 나오게 하면 좋습니다. 시간대는 예를 들어, "01:10:10" 실시간 초 단위로 설정할 수 있으며 오전, 오후(AM, PM) 시간대를 추가로 요구할 수 있습니다. 또는 24시간대로 표시해 달라고 요구할 수 있습니다.
날짜 출력 형식은 요일, 일, 월, 년도 또는 년도-월-일-요일 형식으로 출력을 요구합니다.
출력 시 시간과 날짜의 폰트 크기도 중요한데, 시간 폰트 크기는 숫자로 지정하거나 날짜 폰트 크기는 시간보다 작은 크기로 설정 폰트를 '두껍게' 또는 '진하게' 요구할 수 있습니다.
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
New York Local Time
</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; margin: 50px; } #time { font-size: 100px; margin-bottom: 120px; } #date { font-size: 50px; margin-top: 20px; }
</style>
<script>
function updateClock() { const newYorkTime = new Date().toLocaleString('en-US', { timeZone: 'America/New_York', hour: 'numeric', minute: 'numeric', second: 'numeric', hour12: true }); const newYorkDate = new Date().toLocaleString('en-US', { timeZone: 'America/New_York', weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }); document.getElementById('time').textContent = newYorkTime; document.getElementById('date').textContent = newYorkDate; } setInterval(updateClock, 1000);
</script>
</head>
<body>
<div id="time">
</div>
<div id="date">
</div>
</body>
</html>
인간 전문가 구글 제미니(Gemini) 챗GPT4 차이점 (1) | 2023.12.09 |
---|---|
프롬프트 베이스(PromptBase) 사용법 | 프롬프트 생성 사고팔기 (0) | 2023.12.08 |
컨버트파일.AI (ConvertFiles.AI) | 1초 무료 이미지 파일 변환 (0) | 2023.07.21 |
워터마크 리무버(Watermark Remover.io) | 복잡한 워터마크 무료 제거 (0) | 2023.07.18 |
낙서를 예술 작품으로 만드는 AI | Artificial. ink (0) | 2023.07.01 |