행위

사용자

"Red"의 두 판 사이의 차이

red

(연습)
(연습)
106번째 줄: 106번째 줄:
  
 
==연습==
 
==연습==
<html>
 
<head>
 
<title>My Leaflet Map</title>
 
<link rel="stylesheet" href="//unpkg.com/leaflet@1.0.2/dist/leaflet.css" />
 
<style type="text/css">
 
#map {
 
https://riptutorial.com/ 3
 
height: 500px;
 
}
 
</style>
 
</head>
 
<body>
 
<div id="map"></div>
 
<script src="//unpkg.com/leaflet@1.0.2/dist/leaflet.js"></script>
 
<script>
 
var map = L.map('map').setView([51.505, -0.09], 13);
 
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
 
attribution: '&copy; OpenStreetMap
 
contributors'
 
}).addTo(map);
 
L.marker([51.5, -0.09]).addTo(map)
 
.bindPopup('A pretty CSS3 popup.<br> Easily customizable.')
 
.openPopup();
 
</script>
 
</body>
 
</html>
 

2020년 5월 28일 (목) 12:16 판

기초 관리

박사학위논문

온톨로지

디지털 인문학 연구


시맨틱 데이터 관련 틀

기타

수필교육론

가람일기

틀(Frame)

기본

태그

가람일기 예시 페이지

XML 다운로드 링크

경북 보호수 사업 제안

네트워크 그래프

위키 페이지

예시: <marquee>

배경은 검정색 좌우 반복합니다 위쪽으로 스크롤 됩니다 한번에 16픽셀씩 움직입니다


"니당이는 귀여워"

예시: 유튜브영상

1. 앞뒤로 html 태그 붙일 것
2. 2019년도에? 크롬 정책이 변경되어서 autoplay=1 뒤에 플레이리스트 어쩌구 썼는데, 그게 아니라 걍 오토플레이=1 하고 제일뒤에 allow=오토플레이 어쩌구 요거 해주면 됨

Maps 익스텐션1

지도를 불러오는 중...

연습