-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1.html
More file actions
102 lines (86 loc) · 4.58 KB
/
Copy path1.html
File metadata and controls
102 lines (86 loc) · 4.58 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html>
<head>
<title>WEB1 - html</title>
<meta charset="utf-8">
<!--구글 방문자 분석기 코드-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-181058951-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-181058951-1');
</script>
<!--구글 방문자 분석기 코드 끝 -->
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<input type="button" value="night" onclick="
document.querySelector('body').style.backgroundColor = 'black';
document.querySelector('body').style.color = 'white';
">
<input type="button" value="day" onclick="
document.querySelector('body').style.backgroundColor = 'white';
document.querySelector('body').style.color = 'black';
">
<ol>
<li><a href="1.html">HTML</a></li>
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">JavaScript</li>
</ol>
<h2>HTML</h2>
<!--동영상 설치 코드-->
<p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/7T7r_oSp0SE" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</p>
<!--동영상 설치 코드 끝-->
<!--본문 내용 시작 -->
<p><a href="https://www.w3.org/TR/html52/" target="_blank" title="html5 specification">HyperText Markup Language
(HTML, Cultural Language: Herbal Text Markup Language, Hyper Text Markup Language) is the dominant markup language for web pages.</a>
<strong>HTML provides a way to create structured documents with links, citations, and other items, as well as
representing structural meaning for text such as headings, paragraphs, lists, etc.</strong>
And it can be used to embed images and objects and create interactive forms.<img src="coding.jpg" width="100%">
<u>HTML</u>is written in the form of HTML elements that are "tags" enclosed in angle brackets within the web page content.
</p>
<p style="margin-top:40px;">HTML can contain or load scripts such as JavaScript that affect the behavior of HTML
processing devices such as web browsers, and CSS that defines the appearance and placement of the body and other items.
The W3C, co-director of the HTML and CSS standards, recommends the use of CSS for clear and representative markup.
</P>
<!--본문 내용 끝 -->
<p>
<!-- 라이브리 시티 댓글 설치 코드 -->
<div id="lv-container" data-id="city" data-uid="MTAyMC81MTgxMS8yODI5Mg==">
<script type="text/javascript">
(function (d, s) {
var j, e = d.getElementsByTagName(s)[0];
if (typeof LivereTower === 'function') { return; }
j = d.createElement(s);
j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
j.async = true;
e.parentNode.insertBefore(j, e);
})(document, 'script');
</script>
<noscript> 라이브리 댓글 작성을 위해 JavaScript를 활성화 해주세요</noscript>
</div>
<!-- 시티 댓글 설치 코드 끝 -->
</p>
<!-- 채팅 기능 코드 시작-->
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5f919015b5546b2d39909f64/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
<!-- 채팅 기능 코드 시작-->
</body>
</html>