Commit 59fcb6b4 authored by gyojincompany's avatar gyojincompany

test

parents
# Default ignored files
/shelf/
/workspace.xml
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (html_project)" project-jdk-type="Python SDK" />
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/html_project.iml" filepath="$PROJECT_DIR$/.idea/html_project.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>a.html</title>
</head>
<body>
저는 a파일입니다!!!
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>b.html</title>
</head>
<body>
저는 b파일입니다!!!!!
</body>
</html>
\ No newline at end of file
File added
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>단락 연습</title>
</head>
<body>
<h3>튤립</h3>
<p><b>튤립</b>은 여러 종류의 품종으로 나누어져 있어 각기 아름다운 꽃을 감상할 수 있다.</p>
<p><i>햇볕이 잘 들고 배수가 잘되는 토양</i>에 심는 것이 적합하며 화분은 구근의 2~3배 정도 크기가 적당하다.</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>image.html</title>
</head>
<body>
<img src="https://post-phinf.pstatic.net/MjAyMTEyMjVfMjg3/MDAxNjQwMzg4NTA3Njgw.K7eksmVvVrameEt75WbLbXCmq7d9U5bvhK4Td0N0ssog.wQ4ujehfrcCpf7WbDZEJZwjmBuhl418bbkV9dSZrVxEg.JPEG/Audi-RS6_Avant-2020-1280-06.jpg?type=w1200">
</body>
</html>
\ No newline at end of file
<!--
2021년 12월 29일 태그 연습
fjaklfjdlskajfklsda
fjalfjsdklaf
<a href="a.html">a파일 열기</a><br>
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>link_test.html</title>
</head>
<body>
<!--
fajkfjdklfasj
fjaklfjdlskajfklsda
fjalfjsdklaf
<a href="a.html">a파일 열기</a><br>
-->
<a href="data/b.html">b파일 열기</a>
<!---->
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mp3.html</title>
</head>
<body>
<audio src="data/evocation.mp3" controls autoplay loop></audio>
<video width="320" height="240" controls>
<source src="data/movie.mp4" type="video/mp4">
</video>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ul_li_ex.html</title>
</head>
<body>
<ul>
<li>사과</li>
<li>딸기</li>
<li>바나나</li>
</ul>
<ol>
<li>사과</li>
<li>딸기</li>
<li>바나나</li>
</ol>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment