<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>chaehwan_lee.log</title>
        <link>https://velog.io/</link>
        <description>Please be wonderful but don't be so serious, enjoy this journey with the good people!</description>
        <lastBuildDate>Tue, 22 Feb 2022 12:45:49 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <image>
            <title>chaehwan_lee.log</title>
            <url>https://images.velog.io/images/chaehwan_lee/profile/a71253ea-368e-482d-8806-7b3c11e4c9d2/social.png</url>
            <link>https://velog.io/</link>
        </image>
        <copyright>Copyright (C) 2019. chaehwan_lee.log. All rights reserved.</copyright>
        <atom:link href="https://v2.velog.io/rss/chaehwan_lee" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[mac python path 설정]]></title>
            <link>https://velog.io/@chaehwan_lee/mac-python-path-%EC%84%A4%EC%A0%95</link>
            <guid>https://velog.io/@chaehwan_lee/mac-python-path-%EC%84%A4%EC%A0%95</guid>
            <pubDate>Tue, 22 Feb 2022 12:45:49 GMT</pubDate>
            <description><![CDATA[<h2 id="문제상황">문제상황</h2>
<pre><code>➜  ~ .bash_profile
➜  ~ ls
➜  ~ ls -a
➜  ~ python

WARNING: Python 2.7 is not recommended.
This version is included in macOS for compatibility with legacy software.
Future versions of macOS will not include Python 2.7.
Instead, it is recommended that you transition to using &#39;python3&#39; from within Terminal.

Python 2.7.18 (default, Jan  4 2022, 17:47:56)
[GCC Apple LLVM 13.0.0 (clang-1300.0.29.10) [+internal-os, ptrauth-isa=deployme on darwin
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; exit()
➜  ~ which python
/usr/bin/python
➜  ~ cd usr/bin
cd: no such file or directory: usr/bin
➜  ~ cd /usr/bin
➜  bin ls
... ... ... 
➜  bin ls python
python
➜  bin cd
➜  ~ ls -a
... ... ...
➜  ~ vi .bash_profile
➜  ~ cd /libaray
cd: no such file or directory: /libaray
➜  ~ cd /Library
➜  /Library ls

➜  /Library cd Frameworks
➜  Frameworks ls

➜  Frameworks cd Python.framework
➜  Python.framework ls

➜  Python.framework cd Python
cd: not a directory: Python
➜  Python.framework ls -la

➜  Python.framework cd Versions
➜  Versions cd Current

➜  Current ls -la
➜  Current cd bin
➜  bin ls</code></pre><h2 id="문제점">문제점</h2>
<p>1) 파이썬으로 Django 환경을 세팅하려고 시도를 했으나 오류 발생</p>
<p>2) M1 mac terminal 에서 python 경로를 찾아들어감</p>
<p>anaconda 뿐만 아니라 pip pip3 <a href="mailto:python@2.x">python@2.x</a> python@3.x 등 여러가지가 섞여서 경로가 꼬여있는 상황</p>
<p>3) PATH 를 잘 잡아줘야 한다고 함, 리눅스 터미널을 잘 몰라서 일주일동안 고통받음</p>
<h2 id="해결방법">해결방법</h2>
<p>리눅스 쉘 종류가 여러가지가 있었음. 뜻하지 않게 리눅스에 입문.
sh, csh, tsch, zsh, bash 라는 종류가 있고 path 설정 명령어가 약간씩 달랐음. 맥에 처음으로 파이썬 설치를 할 때, 쉘 개념도 모르고 명령어만 열심히 두드렸더니 파이썬이 도대체 어디에 설치되어있는지 찾기가 어려움. 게다가 삭제를 한다고 해도 제대로 삭제가 되었는지 확을을 못함. 윈도우만 사용하다 맥을 접했는데 윈도우와 달라서 고통받음.</p>
<p>vi ~/.zshrc 로 들어가서 </p>
<p>아래 문장을 추가함</p>
<p>alias python=&quot;python3&quot;</p>
<pre><code>➜  ~ python
Python 3.10.2 (v3.10.2:a58ebcc701, Jan 13 2022, 14:50:16) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; </code></pre><p>거짓말처럼 파이썬2 로 나오던 부분이 파이썬3로 변경됨.
그 후에 Django 환경을 설정했더니 일주일 내내 괴롭혀오던 문제해결.</p>
<h2 id="소감">소감</h2>
<ul>
<li><p>짧은 시간에 Python, SQL 구문, Django 를 배우다보니 개인적으로 좀 버거움. 남들이 그냥 쉽게 적어내는 프로그램을 짜는 것을 혼자 하라고 하니 어떻게 해야하는지 생각을 할 수가 없어서 곤란했으나, 익숙하지 않으면 다 그런것이고 너무 하나하나에 대해서 생각하기 보다는 따라가다보면 알게되는 것들이 많다고 생각하고 따라가라는 조언을 들음. 누구나 낯선 것이 익숙해지기까지는 잘 하기 어려움. 포기하지 말것.</p>
</li>
<li><p>윈도우가 아닌 환경에서 개발을 배우다보니, Docker와 같은 가상환경 세팅에 대해 생각해보게 됨. 오래전 리눅스로 몇 가지 줄을 적어보고 검은 화면만 바라보다 꺼버린 적이 있는데, 이 검은 화면으로 뭔가를 만들어 낸다는 것이 신기함. 혼자 맥에서 개발을 배우다보니 기본적은 세팅을 하면서도 미묘하게 달라 고통을 받았지만 거짓말처럼 몇 문장을 적어놓고 문제가 해결되는 것이 너무 기분이 좋음.</p>
</li>
<li><p>여전히 지식이 부족해서 잘 모르나, 검색결과 M1은 기존 Intel 기반으로 만들어진 프로그램들과 호환이 잘 안되는 문제가 많다고 함.</p>
</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[git 명령어]]></title>
            <link>https://velog.io/@chaehwan_lee/git-%EB%AA%85%EB%A0%B9%EC%96%B4</link>
            <guid>https://velog.io/@chaehwan_lee/git-%EB%AA%85%EB%A0%B9%EC%96%B4</guid>
            <pubDate>Thu, 16 Sep 2021 16:36:36 GMT</pubDate>
            <description><![CDATA[<p><img src="https://images.velog.io/images/chaehwan_lee/post/51acfdc9-e8aa-45e8-b550-8f34da77a2f9/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202021-09-17%20%E1%84%8B%E1%85%A9%E1%84%8C%E1%85%A5%E1%86%AB%201.37.33.png" alt=""></p>
<blockquote>
<p><a href="https://github.com/">https://github.com/</a> </p>
</blockquote>
<p>1) 깃을 홈페이지에서 다운로드 설치 후 
2) Visual Studio Code(적당한 텍스트에디터) 사용했음</p>
<pre><code>     ❯ 원격 저장소 ❮

  (Push)  ⬆︎ 

         HEAD

(commit)  ⬆︎ (어떤 작업을 했는지 적어둠)

      Staging area

   (add)  ⬆︎ 

    Working directory
    내 컴퓨터 작업공간

**풀은(Pull) 원격 저장소에서 한 번에 내 작업공간으로 들어옴

**공유작업을 할 때, 누군가 먼저 Push를 했다면, 
나는 먼저 Pull 한 후에 다시 Push를 해야함.
(푸쉬를 하고 싶어도 누군가 먼저하면 푸쉬가 불가능)

**브랜치 생성으로 분기점을 만들고 따로 실험적인 작업을 하다가, 
병합할 수도 있고 다시 과거로 돌아올 수도 있음. 
(HEAD와 master로 체크아웃.)
</code></pre><h3 id="▶︎-깃초기화">▶︎ 깃초기화</h3>
<p>git init</p>
<h3 id="▶︎-깃-상태">▶︎ 깃 상태</h3>
<p>git status</p>
<h3 id="▶︎-깃-레퍼지토리-연결">▶︎ 깃 레퍼지토리 연결</h3>
<p>git remote add origin</p>
<h3 id="▶︎-깃-연결확인">▶︎ 깃 연결확인</h3>
<p>git remote -v</p>
<h3 id="▶︎-깃-복제">▶︎ 깃 복제</h3>
<p>git clone &#39;주소&#39;</p>
<h3 id="▶︎-깃-추가">▶︎ 깃 추가</h3>
<p>git add 파일이름</p>
<h3 id="▶︎-깃-커밋">▶︎ 깃 커밋</h3>
<p>git commit -m “커밋내용”</p>
<h3 id="▶︎-깃-푸시">▶︎ 깃 푸시</h3>
<p>git push 원격 저장소 브랜치</p>
<h3 id="▶︎-깃-강제푸시">▶︎ 깃 강제푸시</h3>
<p>git --force push origin 브랜치이름</p>
<p>------내 컴퓨터에서 깃으로 보내기-----</p>
<h3 id="▶︎-깃-브랜치">▶︎ 깃 브랜치</h3>
<p>git branch 가지이름</p>
<h3 id="▶︎-깃-브랜치-삭제">▶︎ 깃 브랜치 삭제</h3>
<p>git branch -d </p>
<h3 id="▶︎-깃-브랜치-강제삭제">▶︎ 깃 브랜치 강제삭제</h3>
<p>git branch -D(대문자)</p>
<h3 id="▶︎-깃-체크아웃">▶︎ 깃 체크아웃</h3>
<p>git checkout -b 이름</p>
<h3 id="▶︎-깃-로컬브랜치-내려받기">▶︎ 깃 로컬브랜치 내려받기</h3>
<p>git pull origin 브랜치이름</p>
<h3 id="▶︎-깃-리셋이전-커밋">▶︎ 깃 리셋(이전 커밋)</h3>
<p>git reset --hard HEAD~</p>
<h3 id="▶︎-깃-푸시-브랜치">▶︎ 깃 푸시 브랜치</h3>
<p>git push origin 브랜치이름</p>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 51]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-51</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-51</guid>
            <pubDate>Fri, 03 Sep 2021 10:58:23 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<ul>
<li>JAVASCRIPT</li>
</ul>
<p><img src="https://images.velog.io/images/chaehwan_lee/post/3eb1784e-b972-44ce-bfef-cdeb6a299900/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202021-09-03%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%207.56.44.png" alt=""></p>
<ul>
<li>javascript 를 사용할 때, 2가지 방식이 있는데 이를 혼용해서 사용하면 안된다.</li>
</ul>
<h1 id="어려운점">어려운점</h1>
<ul>
<li>Javascript의 세부적인 내용에 대한 이해</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습을 하고 선택자나 사용법에 대해 따로 찾아봄</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>복습을 하면서 부족했던 선택자들과 CSS의 디테일한 부분들에 대해 학습을 하는 것이 좋았음. 실제 카피캣들을 보면서 손으로 익혔던 모델들을 다시 한 번 보니 이전에 보이지 않았던 것들이 보이는 것 같음.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 50]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-50</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-50</guid>
            <pubDate>Thu, 02 Sep 2021 09:57:54 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<p>네이버 모바일 카피캣 복습</p>
<p><img src="https://images.velog.io/images/chaehwan_lee/post/5683b13d-9695-4a55-ad94-95562b1bc996/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202021-09-02%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.16.16.png" alt=""></p>
<p><img src="https://images.velog.io/images/chaehwan_lee/post/181e8f0f-2ac6-4e7e-9746-109a5b29836e/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202021-09-02%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.16.28.png" alt=""></p>
<h1 id="어려운점">어려운점</h1>
<ul>
<li>다시보니 익숙해져서 그런지 다 안다고 생각했으나 몇 가지 부분에서 의문점이 생김</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습을 통해서 잊고 있었던 부분들을 재학습함</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>복습의 중요성에 대해 실감함. 그리고 손에 익히는 방법을 통해서 익히는 것과 개념을 이해하는 것에 대해 생각해봄.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 49]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-49</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-49</guid>
            <pubDate>Thu, 02 Sep 2021 09:55:08 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>/* 초기화 작업 */
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: &#39;Nanum Gothic&#39;, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;

    background-color: #181818;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img    {
    vertical-align: middle;
}

button {
    background-color: transparent;
    border: none;
}

input {
    outline: none;
    border: none;
}

input:focus {
    outline: none;
}


/* 디폴트 작업 */
#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1300px;
}

.flex-align-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-align-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-align-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}


/* 상단 영역 */
#youtube-top-nav {
    position: fixed;

    width: 100%;
    min-width: 1380px;
    height: 56px;
    background-color: #212121;

    padding: 0 16px;

    z-index: 999999;
}

#youtube-top-nav .nav-left {
    height: 56px;
}

#youtube-top-nav .nav-left .btn-menu {
    width: 40px;
    height: 40px;
    padding: 8px;

    background-image: url(../img/menu.png);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;

    cursor: pointer;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap {
    margin-left: 8px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap .youtube-logo {
    display: block;
    width: 30px;
    height: 28px;
    background-image: url(../img/youtube.png);
    background-size: 30px 28px;
    background-repeat: no-repeat;
    background-position: 50% 35%;

    margin-right: 3px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap span {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap p {
    color: #aaa;
    font-size: 1px;
    margin-top: -17px;
    margin-left: 5px;
}

#youtube-top-nav .nav-right {
    height: 56px;
}

#youtube-top-nav .nav-right .btn-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 16px;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-1 {
    background-image: url(../img/menu-2.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-2 {
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-login {
    display: inline-block;
    border: solid 1px #3ea6ff;
    padding: 10px 12px 8px;

    color: #3ea6ff;
    font-size: 14px;
    font-weight: bold;
}

#youtube-top-nav .nav-center {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
}

#youtube-top-nav .nav-center .search-wrap {
    width: 640px;
    height: 30px;
}    

#youtube-top-nav .nav-center .search-wrap input {
    width: calc(100% - 65px);
    height: 30px;

    background-color: hsl(0, 0%, 7%);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 2px 0 0 2px;

    padding: 2px 6px;

    font-size: 14px;
}

#youtube-top-nav .nav-center .search-wrap input:focus {
    border: solid 1px #065fd4;
    color: #aaa;
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap input::placeholder {
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap .btn-search {
    width: 65px;
    height: 30px;

    background-image: url(../img/search.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: hsla(0, 0%, 100%, .08);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 0 2px 2px 0;

    cursor: pointer;
}

#youtube-top-nav .nav-center .btn-voice {
    width: 35px;
    height: 35px;
    background-color: black;
    border-radius: 50%;
    background-image: url(../img/voice.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;

    margin-left: 8px;

    cursor: pointer;
}


/* 왼쪽 영역 */
#youtube-left-nav {
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;

    width: 240px;
    background-color: #212121;

    top: 56px;
    bottom: 0;
    left: 0;

    z-index: 999999;
}

#youtube-left-content {
    position: absolute;
    width: 225px;
    height: 100%;
}

#youtube-left-content .nav-section {
    padding: 8px 0;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

#youtube-left-content .nav-section .nav-title-wrap {
    padding: 8px 24px;
}

#youtube-left-content .nav-section .nav-title-wrap h2 {
    color: #aaaaaa;
    font-size: 15px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body {

}

#youtube-left-content .nav-section .nav-body ul {

}

#youtube-left-content .nav-section .nav-body li:hover {
    background-color: rgba(136, 136, 136, .2);
}

#youtube-left-content .nav-section .nav-body li a.on {
    background-color: rgba(136, 136, 136, .6);
}

#youtube-left-content .nav-section .nav-body li a {
    height: 40px;
    padding: 0 24px;
}

#youtube-left-content .nav-section .nav-body li a .icon {
    display: inline-block;
    width: 24px;
    height: 24px;

    margin-right: 24px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-1 {
    background-image: url(../img/home.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-2 {
    background-image: url(../img/explore.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-3 {
    background-image: url(../img/youtube-2.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-4 {
    background-image: url(../img/library.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-5 {
    background-image: url(../img/history.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-6 {
    background-image: url(../img/browse.png);    
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-7 {
    background-image: url(../img/youtube-2.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-8 {
    background-image: url(../img/live.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-9 {
    background-image: url(../img/setting.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-10 {
    background-image: url(../img/report.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-11 {
    background-image: url(../img/help.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-12 {
    background-image: url(../img/send-feedback.png);
}

#youtube-left-content .nav-section .nav-body li a span {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body .txt-wrap {
    padding: 8px 24px;
}

#youtube-left-content .nav-section .nav-body .txt-wrap p {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body .txt-wrap .btn-login {
    display: inline-block;

    border: solid 1px #3ea6ff;
    padding: 10px 12px 8px;
    color: #3ea6ff;
    font-size: 14px;
    font-weight: bold;

    margin-top: 12px;
}

#youtube-left-content .nav-section .nav-body li a .circle-icon {
    display: inline-block;
    width: 24px;
    height: 24px;

    margin-right: 24px;

    background-color: rgb(64, 64, 64);
    border-radius: 50%;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-1 {
    background-image: url(../img/music.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-2 {
    background-image: url(../img/sport.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-3 {
    background-image: url(../img/gaming.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-4 {
    background-image: url(../img/movie.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-5 {
    background-image: url(../img/news.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-6 {
    background-image: url(../img/live.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-7 {
    background-image: url(../img/learning.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-8 {
    background-image: url(../img/gaming.png);
}

#youtube-left-content #youtube-footer {

}

#youtube-left-content #youtube-footer .txt-wrap {
    padding: 12px 24px 0;
}

#youtube-left-content #youtube-footer .txt-wrap a {
    margin-right: 8px;

    color: #aaaaaa;
    font-size: 12px;
    font-weight: bold;

    word-break: keep-all;
}

#youtube-left-content #youtube-footer .txt-wrap p {
    font-size: 12px;
    color: #717171;
    font-weight: 400;
    line-height: 1.4;

    padding-bottom: 12px;
}

/* 유튜브 메인 */
#youtube-main {
    position: absolute;

    left: 240px;
    top: 56px;
    right: 0;
    bottom: 0;
    background-color: #181818;
}

/* 태그랩 */
#youtube-main .tag-wrap {
    height: 56px;
    width: 100%;
    min-width: 1165px;
    background-color: #212121;

    border-top: solid 1px rgba(255, 255, 255, .1);
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

#youtube-main .tag-wrap ul {
    padding: 0 25px;
    justify-content: center;
}

#youtube-main .tag-wrap li {
    height: 32px;
    min-width: 12px;
    padding: 4px 12px;
    margin: 12px;
    margin-left: 0;

    background-color: rgba(255, 255, 255, .1);
    border: solid 1px rgba(255, 255, 255, .1);
    border-radius: 16px;

    transition: background-color 0.3s ease-out;
}


#youtube-main .tag-wrap li.on {
    background-color: #ffffff;
    transition: unset;
}

#youtube-main .tag-wrap li.on a {
    color: #212121;
}

#youtube-main .tag-wrap li:hover {
    background-color: rgba(136, 136, 136, .6);
}

#youtube-main .tag-wrap li.on:hover {
    background-color: #ffffff;
}

#youtube-main .tag-wrap li a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
}


/* 배너 */
#youtube-main .youtube-banner {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #000000;

    margin-bottom: 32px;
}

#youtube-main .youtube-banner .banner-container {
    position: relative;
    max-width: 2256px;
    height: 100%;
    margin: 0 auto;
}

#youtube-main .youtube-banner .youtube-music-logo {
    position: absolute;
    top: 30px;
    left: 25px;
}

#youtube-main .youtube-banner .youtube-music-logo i {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/youtube-music.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-main .youtube-banner .youtube-music-logo span {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

#youtube-main .youtube-banner p {
    position: absolute;
    font-size: 24px;
    color: #ffffff;

    top: 70px;
    left: 27px;
}

#youtube-main .youtube-banner .btn-join {
    position: absolute;
    color: #ffffff;
    font-size: 14px;

    background-color: #000000;
    border: solid 1px #ffffff;
    padding: 13px 20px;

    bottom: 30px;
    left: 27px;
}

#youtube-main .youtube-banner .close {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: lightgray;

    top: 10px;
    right: 10px;

    cursor: pointer;
}


/* 컨텐츠 */
#youtube-main-content {
    width: 100%;
    height: 100%;
    padding: 24px;
}

#youtube-main-content ul {
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

#youtube-main-content ul li {
    width: 24%;
    margin-bottom: 40px;
}

#youtube-main-content ul li .video-thumbnail {
    width: 100%;
}

#youtube-main-content ul li .video-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
}

#youtube-main-content ul li .video-thumbnail img {
    width: 100%;   /* img의 한쪽에만(현재 가로) 100%를 적용하게 되면 원래 이미지가 가진 비율에 맞춰 높이값이 변경된다(비율유지) */
}

#youtube-main-content ul li .video-thumbnail .time {
    position: absolute;

    background-color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 2px;

    padding: 3px 4px;

    bottom: 4px;
    right: 4px;
}

#youtube-main-content ul li .video-txt-wrap {
    margin-top: 12px;
    align-items: flex-start;
}

#youtube-main-content ul li .video-txt-wrap .image-link {
    display: inline-block;
    width: 36px;
    height: 36px;

    margin-right: 12px;
}

#youtube-main-content ul li .video-txt-wrap .image-link img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#youtube-main-content ul li .video-txt-wrap .txt {
    width: calc(100% - 48px);
}

#youtube-main-content ul li .video-txt-wrap .txt h3 {
    margin-bottom: 6px;
}

#youtube-main-content ul li .video-txt-wrap .txt h3 .title-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;

}

#youtube-main-content ul li .video-txt-wrap .txt p {

}

#youtube-main-content ul li .video-txt-wrap .txt p .channel-link {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 13px;
}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom {

}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .count,
#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .date {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 13px;
}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 3px 3px 2px;
}

/* channel.html */
#youtube-channel-content #channel-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: greenyellow;
}

#youtube-channel-content #channel-banner {
    display: block;
}

#youtube-channel-content #channel-banner .btn-wrap {
    position: absolute;
    width: 230px;
    height: 38px;

    background-color: rgba(0, 0, 0, .3);

    bottom: 14px;
    right: 107px;
}

#youtube-channel-content #channel-banner .btn-wrap i {
    display: block;
    width: 16px;
    height: 16px;

    margin-left: 9px;

    background-image: url(../img/youtube.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-wrap h3 {
    font-size: 12px;
    color: #ffffff;
    margin-left: 8px;
}

#youtube-channel-content #channel-banner .btn-icons {
    position: absolute;
    width: 92px;
    height: 36px;

    background-color: rgba(0, 0, 0, .3);

    bottom: 15px;
    right: 15px;
}

#youtube-channel-content #channel-banner .btn-icons a.facebook {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/facebook.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-icons a.twitter {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/twitter.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-icons a.kakao {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/kakao.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.channel-container {
    width: 1070px;
    margin: 0 auto;
}

#youtube-channel-content .channel-header {
    padding: 16px 0 4px;
    background-color: rgb(24, 24, 24);
}

#youtube-channel-content .channel-header .channel-profile-wrap {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 24px;
}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap h2 {
    font-size: 25px;
    color: #ffffff;
}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap p {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 5px;
}

#youtube-channel-content .channel-header .channel-profile-wrap .btn-subscribe {
    padding: 10px 16px;
    background-color: #c00;
    border-radius: 2px;

    color: #ffffff;
    font-weight: bold;

    cursor: pointer;
}

#channel-nav {
    background-color: rgb(24, 24, 24);
}

#channel-nav ul {

}

#channel-nav li {

}

#channel-nav li a {
    display: block;
    height: 47px;

    padding: 0 32px;
    line-height: 47px;

    border-bottom: solid 3px transparent;
    color: #aaaaaa;
    font-size: 14px;
    font-weight: bold;
}

#channel-nav li a:hover {
    color: #ffffff;
}

#channel-nav li.active a {
    color: #ffffff;
    border-bottom: solid 3px #aaaaaa;
}

#channel-nav .search-wrap {
    width: 195px;
}

#channel-nav .search-wrap i {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 3px;

    background-image: url(../img/search.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;

    border-radius: 50%;

    cursor: pointer;
}

#channel-nav .search-wrap i:active {
    background-color: rgba(225, 225, 225, .3);
}

#channel-nav .search-wrap input {
    background-color: transparent;
    padding: 5px 0;
}

#channel-nav .search-wrap input::placeholder {
    color: #ffffff;
    font-weight: bold;
}

#channel-nav .search-wrap input:focus {
    border-bottom: solid 2px #ffffff;
    color: #ffffff;
}

#channel-recent {
    padding: 24px 0;
    align-items: flex-start;
}

#channel-recent img {
    width: 424px;
    height: 238px;

    margin-right: 24px;
}

#channel-recent .txt-wrap {
    width: 400px;
}

#channel-recent .txt-wrap h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #ffffff;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}

#channel-recent .txt-wrap .view {
    margin: 16px 0;
}

#channel-recent .txt-wrap .view p {
    font-size: 12px;
    font-weight: bold;
    color: #aaaaaa;    
}

#channel-recent .txt-wrap .view p.count {

}

#channel-recent .txt-wrap .view p.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 1px 4px;
}

#channel-recent .txt-wrap .title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

#channel-recent .txt-wrap .link-wrap {
    margin: 17px 0;
}

#channel-recent .txt-wrap .link-wrap p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #ffffff;
}

#channel-recent .txt-wrap .link-wrap p em {
    color: #3ea6ff;
    font-style: normal;

    cursor: pointer;
}

#channel-recent .txt-wrap .more {
    font-size: 13px;
    font-weight: 600;
    color: #aaaaaa;

    cursor: pointer;
}

#channel-recent .txt-wrap .more:hover {
    color: #ffffff;
}

.channel-playlists-section {
    padding: 24px 0;
    border-top: solid 1px rgba(255, 255, 255, .2);
} 

.channel-playlists-section .playlists-header {

}

.channel-playlists-section .playlists-header h3 {
    margin-right: 20px;
    font-size: 17px;
    color: #ffffff;

    cursor: pointer;
}

.channel-playlists-section .playlists-header .play-wrap {

}

.channel-playlists-section .playlists-header .play-wrap .icon-play {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;

    background-image: url(../img/play.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.channel-playlists-section .playlists-header .play-wrap .play-link {
    font-size: 15px;
    font-weight: bold;
    color: #aaaaaa;
}

.channel-playlists-section .playlists-header-description span {
    display: inline-block;

    color: #aaaaaa;
    font-size: 13px;
    font-weight: 600;

    margin-top: 10px;
}

.channel-playlists-section .playlists-body {
    margin-top: 24px;
}

.channel-playlists-section .playlists-body ul {
    align-items: flex-start;
}

.channel-playlists-section .playlists-body li {
    width: 210px;
}

.channel-playlists-section .playlists-body li .channel-thumbnail {
    width: 100%;
    height: 118px;
}

.channel-playlists-section .playlists-body li .channel-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.channel-playlists-section .playlists-body li .channel-thumbnail img {
    width: 100%;
    height: 100%;
}

.channel-playlists-section .playlists-body li .channel-thumbnail .time {
    position: absolute;

    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .8);
    padding: 2px 4px;
    border-radius: 2px;

    bottom: 4px;
    right: 4px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap {
    margin-top: 8px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;

    font-size: 14px;
    line-height: 20px;

    margin-bottom: 6px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap h3 a {
    color: #ffffff;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p {
    font-size: 12px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p a {
    color: #aaaaaa;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p a:hover {
    color: #ffffff;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom  {

}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 20px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.count {

}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 2px 5px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .caption {
    background-color: #212121;
    color: #aaaaaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;

    border-radius: 2px;
    padding: 3px 4px;
}


/* explore.html */
.explore-container {
    width: 1070px;
    margin: 0 auto;
}

#explore-nav {
    padding: 12px 0 8px;
}

#explore-nav ul {

}

#explore-nav li  {
    width: 210px;
    height: 116px;
    background-color: #212121;
    border-radius: 8px;

    margin-bottom: 5px;

    overflow: hidden;
}

#explore-nav li a {
    display: block;
    height: 100%;

    padding: 20px;
}

#explore-nav li a:hover {
    background-color: #000000;
}

#explore-nav li .icon {
    display: block;
    width: 32px;
    height: 32px;

    background-repeat: no-repeat;
    background-position: center;

    margin-bottom: 20px;
}

#explore-nav li .icon.trending {
    background-image: url(../img/trending.png);
}

#explore-nav li .icon.music {
    background-image: url(../img/music-color.png);
}

#explore-nav li .icon.gaming {
    background-image: url(../img/gaming-color.png);
}

#explore-nav li .icon.movies {
    background-image: url(../img/movie-color.png);
}

#explore-nav li .icon.learning {
    background-image: url(../img/learning-color.png);
}

#explore-nav li .icon.sports {
    background-image: url(../img/sports-color.png);
}

#explore-nav li span {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .15px;
}

.explore-playlists-section {
    padding: 24px 0;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
} 

.explore-playlists-section .playlists-header img {
    border-radius: 50%;
    width: 32px;
    height: 32px;

    margin-right: 10px;

    cursor: pointer;
}

.explore-playlists-section .playlists-header h3 {
    margin-right: 20px;
    font-size: 17px;
    color: #ffffff;

    cursor: pointer;
}

.explore-playlists-section .playlists-body {
    margin-top: 24px;
}


.explore-playlists-section .playlists-body ul {
    align-items: flex-start;
}

.explore-playlists-section .playlists-body li {
    width: 210px;
}

.explore-playlists-section .playlists-body li .channel-thumbnail {
    width: 100%;
    height: 118px;
}

.explore-playlists-section .playlists-body li .channel-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.explore-playlists-section .playlists-body li .channel-thumbnail img {
    width: 100%;
    height: 100%;
}

.explore-playlists-section .playlists-body li .channel-thumbnail .time {
    position: absolute;

    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .8);
    padding: 2px 4px;
    border-radius: 2px;

    bottom: 4px;
    right: 4px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap {
    margin-top: 8px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;

    font-size: 14px;
    line-height: 20px;

    margin-bottom: 6px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap h3 a {
    color: #ffffff;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p {
    font-size: 12px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p a {
    color: #aaaaaa;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p a:hover {
    color: #ffffff;
}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 20px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.count {

}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 2px 5px;
}


#popular-section {
    padding: 24px 0 30px;
}

#popular-section h2 {
    font-size: 17px;
    color: #ffffff;
}

#popular-section ul {
    margin-top: 24px;
}

#popular-section li {
    margin-bottom: 15px;
}

#popular-section a {
    align-items: flex-start;
}

#popular-section li .image-wrap {
    position: relative;
    width: 246px;
    height: 148px;

    margin-right: 16px;
}

#popular-section li .image-wrap img {
    width: 100%;
    height: 100%;
}

#popular-section li .image-wrap .time {
    position: absolute;

    border-radius: 2px;
    padding: 2px 4px;
    background-color: rgba(0, 0, 0, .8);

    color: #ffffff;
    font-size: 12px;
    font-weight: bold;

    bottom: 4px;
    right: 4px;
}

#popular-section li .txt-wrap {
    width: 600px;
}

#popular-section li .txt-wrap h3 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

#popular-section li .txt-wrap .video-info {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 22px;
} 

#popular-section li .txt-wrap .video-info span:after {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    vertical-align: top;
    margin: 10px 2px 0px 6px;
}

#popular-section li .txt-wrap .video-info span:last-child:after {
    content: none;
}

#popular-section li .txt-wrap .video-info .channel:hover {
    color: #ffffff;
}

#popular-section li .txt-wrap .video-info .count {

}

#popular-section li .txt-wrap .video-info .date {

}

#popular-section li .txt-wrap .description {
    padding-top: 8px;

    font-size: 12px;
    color: #aaaaaa;
    line-height: 18px;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>CSS 디테일 수정하기 너무 어려움</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>디테일한 부분 수정과 유투브 세부항목에 대한 내용이 너무 어렵게 다가옴. 특히 JS부분에 대한 설명이 있었으면 좋겠으나 없는 것 같음.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 48]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-48</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-48</guid>
            <pubDate>Thu, 02 Sep 2021 09:54:40 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt;  &lt;!-- 다른 페이지로 이동하는 것이 아니기 때문에 button태그 사용 --&gt;
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;BEST OF YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Music&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Sports&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Gaming&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Movie&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;News&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Learning&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;360º Video&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Browse channels&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;MORE FROM YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;YouTube Premium&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-9&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Setting&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-10&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Report history&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-11&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Help&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-12&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Send feedback&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;footer id=&quot;youtube-footer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Press&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Copyright&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Contact us&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Creators&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Advertise&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Developers&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;Terms&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Privacy&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Policy &amp; Safety&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;How YouTube Works&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Test new features&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;
                            Quisque velit nisi&lt;br&gt;
                            Vivamus suscipit tortor eget felis porttitor volutpat. Sed porttitor lectus nibh. Nulla quis lorem ut libero malesuada feugiat.
                        &lt;/p&gt;
                    &lt;/div&gt;

                &lt;/footer&gt;    
            &lt;/div&gt;    
        &lt;/nav&gt;

        &lt;main id=&quot;youtube-main&quot; role=&quot;main&quot;&gt;
            &lt;div id=&quot;youtube-channel-content&quot;&gt;
                &lt;div id=&quot;channel-banner&quot;&gt;
                    &lt;a class=&quot;btn-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                        &lt;i&gt;&lt;/i&gt;
                        &lt;h3&gt;1theK Originals - 원더케이오리지널&lt;/h3&gt;
                    &lt;/a&gt;
                    &lt;div class=&quot;btn-icons flex-align-start&quot;&gt;
                        &lt;a class=&quot;facebook&quot; href=&quot;#&quot;&gt;&lt;/a&gt;    
                        &lt;a class=&quot;twitter&quot; href=&quot;#&quot;&gt;&lt;/a&gt;
                        &lt;a class=&quot;kakao&quot; href=&quot;#&quot;&gt;&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;channel-header&quot;&gt;
                    &lt;div class=&quot;channel-container&quot;&gt;
                        &lt;div class=&quot;channel-profile-wrap flex-align-between&quot;&gt;
                            &lt;div class=&quot;channel-profile flex-align-start&quot;&gt;
                                &lt;img class=&quot;channel-thumbnail&quot; src=&quot;https://via.placeholder.com/80&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h2&gt;1theK (원더케이)&lt;/h2&gt;
                                    &lt;p&gt;23.3M subscribe&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;button type=&quot;button&quot; class=&quot;btn-subscribe&quot;&gt;SUBSCRIBE&lt;/button&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;channel-nav&quot;&gt;
                    &lt;div class=&quot;channel-container&quot;&gt;
                        &lt;div class=&quot;flex-align-start&quot;&gt;
                            &lt;ul class=&quot;flex-align-start&quot;&gt;
                                &lt;li class=&quot;active&quot;&gt;&lt;a href=&quot;#&quot;&gt;HOME&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;VIDEO&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;PLAYLISTS&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;COMMUNITY&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;CHANNELS&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;ABOUT&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;

                            &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                                &lt;i&gt;&lt;/i&gt;
                                &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;channel-content&quot;&gt;
                    &lt;div class=&quot;channel-container&quot;&gt;

                        &lt;div id=&quot;channel-recent&quot; class=&quot;flex-align-start&quot;&gt;
                            &lt;img src=&quot;https://via.placeholder.com/424x238&quot;&gt;
                            &lt;div class=&quot;txt-wrap&quot;&gt;
                                &lt;h2&gt;[MV] KIM JONG KOOK(김종국) X ATEEX(에이티즈) _ Be My Lover(바다 보러 갈래?)&lt;/h2&gt;
                                &lt;div class=&quot;view flex-align-start&quot;&gt;
                                    &lt;p class=&quot;count&quot;&gt;1,129,681 views&lt;/p&gt;
                                    &lt;p class=&quot;date&quot;&gt;1 week ago&lt;/p&gt;
                                &lt;/div&gt;    
                                &lt;span class=&quot;title&quot;&gt;[MV] KIM JONG KOOK(김종국) X ATEEX(에이티즈) _ Be My Lover(바다 보러 갈래?)&lt;/span&gt;
                                &lt;div class=&quot;link-wrap&quot;&gt;
                                    &lt;p&gt;Melon ▶ &lt;em&gt;https://bit.ly/3sjacGy&lt;/em&gt;&lt;/p&gt;
                                    &lt;p&gt;genie ▶ &lt;em&gt;https://bit.ly/3g6mL3e&lt;/em&gt;&lt;/p&gt;
                                    &lt;p&gt;Vibe ▶ &lt;em&gt;https://bit.ly/3iM5Pkm&lt;/em&gt;&lt;/p&gt;
                                    &lt;p&gt;Youtube Music ▶ &lt;em&gt;https://bit.ly/3AZjAT9&lt;/em&gt;&lt;/p&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;more&quot;&gt;READ MORE&lt;/span&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-header-description&quot;&gt;
                                &lt;span&gt;The Hottest K-pop Videos You Shouldn&#39;t Miss Today&lt;/span&gt;
                            &lt;/div&gt;    
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;channel-playlists-section&quot;&gt;
                            &lt;div class=&quot;playlists-header flex-align-start&quot;&gt;
                                &lt;h3&gt;1theK HOT CHOICE&lt;/h3&gt;
                                &lt;div class=&quot;play-wrap flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;play-link&quot;&gt;PLAY ALL&lt;/a&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;playlists-body&quot;&gt;
                                &lt;ul class=&quot;flex-align-between&quot;&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:20&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] CRAVITY _ Gad Pedal
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;129K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:17&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] LUMINOUS(루미너스) _ Dreaming LUMINOUS((꿈루)꿈을 꾸는 루미너스)
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;13K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;5 days ago&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;div class=&quot;channel-thumbnail&quot;&gt;
                                            &lt;a href=&quot;#&quot;&gt;
                                                &lt;img src=&quot;https://via.placeholder.com/210x118&quot;&gt;
                                                &lt;span class=&quot;time&quot;&gt;3:24&lt;/span&gt;
                                            &lt;/a&gt;
                                        &lt;/div&gt;

                                        &lt;div class=&quot;channel-txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                &lt;a href=&quot;#&quot;&gt;
                                                    [MV] KWON EUN BE(권은비) _ Door
                                                &lt;/a&gt;
                                            &lt;/h3&gt;

                                            &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                            &lt;div class=&quot;txt-bottom flex-align-start&quot;&gt;
                                                &lt;span class=&quot;count&quot;&gt;140K views&lt;/span&gt;
                                                &lt;span class=&quot;date&quot;&gt;4 hourse ago&lt;/span&gt;
                                            &lt;/div&gt;

                                            &lt;span class=&quot;caption&quot;&gt;CC&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;                            
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/main&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>채널의 갯수에 대한 디테일한 부분</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>유투브 코드를 뜯어보자</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 47]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-47</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-47</guid>
            <pubDate>Wed, 01 Sep 2021 14:00:43 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt;  &lt;!-- 다른 페이지로 이동하는 것이 아니기 때문에 button태그 사용 --&gt;
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;BEST OF YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Music&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Sports&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Gaming&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Movie&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;News&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Learning&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;360º Video&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Browse channels&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;MORE FROM YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;YouTube Premium&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-9&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Setting&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-10&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Report history&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-11&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Help&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-12&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Send feedback&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;footer id=&quot;youtube-footer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Press&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Copyright&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Contact us&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Creators&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Advertise&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Developers&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;Terms&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Privacy&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Policy &amp; Safety&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;How YouTube Works&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Test new features&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;
                            Quisque velit nisi&lt;br&gt;
                            Vivamus suscipit tortor eget felis porttitor volutpat. Sed porttitor lectus nibh. Nulla quis lorem ut libero malesuada feugiat.
                        &lt;/p&gt;
                    &lt;/div&gt;

                &lt;/footer&gt;    
            &lt;/div&gt;    
        &lt;/nav&gt;

        &lt;main id=&quot;youtube-main&quot; role=&quot;main&quot;&gt;
            &lt;nav class=&quot;tag-wrap&quot;&gt;
                &lt;ul class=&quot;flex-align-between&quot;&gt;
                    &lt;li class=&quot;on&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;All&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;K-Pop&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Game shows&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Music&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Variety shows&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Korean dramas&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Live&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Playlists&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Muckbang&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Training&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Background music&lt;/a&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt; 

            &lt;div class=&quot;youtube-banner&quot;&gt;
                &lt;div class=&quot;banner-container&quot;&gt;
                    &lt;h1 class=&quot;youtube-music-logo flex-align-start&quot;&gt;
                        &lt;i&gt;&lt;/i&gt;
                        &lt;span&gt;YouTube Music&lt;/span&gt;
                    &lt;/h1&gt;
                    &lt;p&gt;Explore music based on your unique taste&lt;/p&gt;
                    &lt;a class=&quot;btn-join&quot; href=&quot;#&quot;&gt;GEI IT NOW&lt;/a&gt;
                &lt;/div&gt;
                &lt;button class=&quot;close&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;

            &lt;div id=&quot;youtube-main-content&quot;&gt;
                &lt;ul class=&quot;flex-align-between&quot;&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                            &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                            &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                            &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/main&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>Wrapper, nav 태그, align 배열</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>영상 복습</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>유투브 학습이 생각보다 어려움</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 46]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-46</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-46</guid>
            <pubDate>Tue, 31 Aug 2021 12:21:53 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt;  &lt;!-- 다른 페이지로 이동하는 것이 아니기 때문에 button태그 사용 --&gt;
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;index.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;BEST OF YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Music&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Sports&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Gaming&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Movie&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;News&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Learning&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;360º Video&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Browse channels&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;MORE FROM YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;YouTube Premium&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-9&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Setting&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-10&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Report history&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-11&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Help&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-12&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Send feedback&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;footer id=&quot;youtube-footer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Press&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Copyright&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Contact us&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Creators&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Advertise&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Developers&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;Terms&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Privacy&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Policy &amp; Safety&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;How YouTube Works&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Test new features&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
</code></pre><pre><code>/* 초기화 */
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: &#39;Nanum Gothic&#39;, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;

    background-color: #181818;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img    {
    vertical-align: middle;
}

button {
    background-color: transparent;
    border: none;
}

input {
    outline: none;
    border: none;
}

input:focus {
    outline: none;
}

#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1300px;
}

.flex-align-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-align-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-align-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

/* 상단 영역 */
#youtube-top-nav {
    position: fixed;

    width: 100%;
    min-width: 1380px;
    height: 56px;
    background-color: #212121;

    padding: 0 16px;

    z-index: 999999;
}

#youtube-top-nav .nav-left {
    height: 56px;
}

#youtube-top-nav .nav-left .btn-menu {
    width: 40px;
    height: 40px;
    padding: 8px;

    background-image: url(../img/menu.png);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;

    cursor: pointer;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap {
    margin-left: 8px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap .youtube-logo {
    display: block;
    width: 30px;
    height: 28px;
    background-image: url(../img/youtube.png);
    background-size: 30px 28px;
    background-repeat: no-repeat;
    background-position: 50% 35%;

    margin-right: 3px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap span {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap p {
    color: #aaa;
    font-size: 1px;
    margin-top: -17px;
    margin-left: 5px;
}

#youtube-top-nav .nav-right {
    height: 56px;
}

#youtube-top-nav .nav-right .btn-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 16px;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-1 {
    background-image: url(../img/menu-2.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-2 {
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-login {
    display: inline-block;
    border: solid 1px #3ea6ff;
    padding: 10px 12px 8px;

    color: #3ea6ff;
    font-size: 14px;
    font-weight: bold;
}


#youtube-top-nav .nav-center {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
}

#youtube-top-nav .nav-center .search-wrap {
    width: 640px;
    height: 30px;
}

#youtube-top-nav .nav-center .search-wrap input {
    width: calc(100% - 65px);
    height: 30px;

    background-color: hsl(0, 0%, 7%);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 2px 0 0 2px;

    padding: 2px 6px;

    font-size: 14px;
}

#youtube-top-nav .nav-center .search-wrap input:focus {
    border: solid 1px #065fd4;
    color: #aaa;
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap input::placeholder {
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap .btn-search {
    width: 65px;
    height: 30px;

    background-image: url(../img/search.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: hsla(0, 0%, 100%, .08);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 0 2px 2px 0;

    cursor: pointer;
}

#youtube-top-nav .nav-center .btn-voice {
    width: 35px;
    height: 35px;
    background-color: black;
    border-radius: 50%;
    background-image: url(../img/voice.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;

    margin-left: 8px;

    cursor: pointer;
}

/* 왼쪽 영역 */
#youtube-left-nav {
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;

    width: 240px;
    background-color: #212121;

    top: 56px;
    bottom: 0;
    left: 0;

    z-index: 999999;
}

#youtube-left-content {
    position: absolute;
    width: 225px;
    height: 100%;
}

#youtube-left-content .nav-section {
    padding: 8px 0;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

#youtube-left-content .nav-section .nav-title-wrap {
    padding: 8px 24px;
}

#youtube-left-content .nav-section .nav-title-wrap h2 {
    color: #aaaaaa;
    font-size: 15px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body {

}

#youtube-left-content .nav-section .nav-body ul {

}

#youtube-left-content .nav-section .nav-body li:hover {
    background-color: rgba(136, 136, 136, .2);
}

#youtube-left-content .nav-section .nav-body li a.on {
    background-color: rgba(136, 136, 136, .6);
}

#youtube-left-content .nav-section .nav-body li a {
    height: 40px;
    padding: 0 24px;
}

#youtube-left-content .nav-section .nav-body li a .icon {
    display: inline-block;
    width: 24px;
    height: 24px;

    margin-right: 24px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-1 {
    background-image: url(../img/home.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-2 {
    background-image: url(../img/explore.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-3 {
    background-image: url(../img/youtube-2.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-4 {
    background-image: url(../img/library.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-5 {
    background-image: url(../img/history.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-6 {
    background-image: url(../img/browse.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-7 {
    background-image: url(../img/youtube-2.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-8 {
    background-image: url(../img/live.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-9 {
    background-image: url(../img/setting.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-10 {
    background-image: url(../img/report.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-11 {
    background-image: url(../img/help.png);
}

#youtube-left-content .nav-section .nav-body li a .icon.icon-12 {
    background-image: url(../img/send-feedback.png);
}

#youtube-left-content .nav-section .nav-body li a span {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body .txt-wrap {
    padding: 8px 24px;
}

#youtube-left-content .nav-section .nav-body .txt-wrap p {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

#youtube-left-content .nav-section .nav-body .txt-wrap .btn-login {
    display: inline-block;

    border: solid 1px #3ea6ff;
    padding: 10px 12px 8px;
    color: #3ea6ff;
    font-size: 14px;
    font-weight: bold;

    margin-top: 12px;
}

#youtube-left-content .nav-section .nav-body li a .circle-icon {
    display: inline-block;
    width: 24px;
    height: 24px;

    margin-right: 24px;

    background-color: rgb(64, 64, 64);
    border-radius: 50%;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-1 {
    background-image: url(../img/music.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-2 {
    background-image: url(../img/sport.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-3 {
    background-image: url(../img/gaming.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-4 {
    background-image: url(../img/movie.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-5 {
    background-image: url(../img/news.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-6 {
    background-image: url(../img/live.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-7 {
    background-image: url(../img/learning.png);
}

#youtube-left-content .nav-section .nav-body li a .circle-icon.icon-8 {
    background-image: url(../img/gaming.png);
}

#youtube-left-content #youtube-footer {

}

#youtube-left-content #youtube-footer .txt-wrap {
    padding: 12px 24px 0;
}

#youtube-left-content #youtube-footer .txt-wrap a {
    margin-right: 8px;

    color: #aaaaaa;
    font-size: 12px;
    font-weight: bold;

    word-break: keep-all;
}

#youtube-left-content #youtube-footer .txt-wrap p {
    font-size: 12px;
    color: #717171;
    font-weight: 400;
    line-height: 1.4;

    padding-bottom: 12px;
}

/* 유튜브 메인 */
#youtube-main {
    position: absolute;

    left: 240px;
    top: 56px;
    right: 0;
    bottom: 0;
    background-color: #181818;
}

#youtube-main .tag-wrap {
    height: 56px;
    width: 100%;
    min-width: 1165px;
    background-color: #212121;

    border-top: solid 1px rgba(255, 255, 255, .1);
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

#youtube-main .tag-wrap ul {
    padding: 0 25px;
    justify-content: center;
}

#youtube-main .tag-wrap li {
    height: 32px;
    min-width: 12px;
    padding: 4px 12px;
    margin: 12px;
    margin-left: 0;

    background-color: rgba(255, 255, 255, .1);
    border: solid 1px rgba(255, 255, 255, .1);
    border-radius: 16px;

    transition: background-color 0.3s ease-out;
}

#youtube-main .tag-wrap li.on {
    background-color: #ffffff;
    transition: unset;
}

#youtube-main .tag-wrap li.on a {
    color: #212121;
}

#youtube-main .tag-wrap li:hover {
    background-color: rgba(136, 136, 136, .6);
}

#youtube-main .tag-wrap li.on:hover {
    background-color: #ffffff;
}

#youtube-main .tag-wrap li a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
}

/* 배너 */
#youtube-main .youtube-banner {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #000000;

    margin-bottom: 32px;
}

#youtube-main .youtube-banner .banner-container {
    position: relative;
    max-width: 2256px;
    height: 100%;
    margin: 0 auto;
}

#youtube-main .youtube-banner .youtube-music-logo {
    position: absolute;
    top: 30px;
    left: 25px;
}

#youtube-main .youtube-banner .youtube-music-logo i {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/youtube-music.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-main .youtube-banner .youtube-music-logo span {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

#youtube-main .youtube-banner p {
    position: absolute;
    font-size: 24px;
    color: #ffffff;

    top: 70px;
    left: 27px;
}

#youtube-main .youtube-banner .btn-join {
    position: absolute;
    color: #ffffff;
    font-size: 14px;

    background-color: #000000;
    border: solid 1px #ffffff;
    padding: 13px 20px;

    bottom: 30px;
    left: 27px;
}

#youtube-main .youtube-banner .close {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: lightgray;

    top: 10px;
    right: 10px;

    cursor: pointer;
}

/* 컨텐츠 */
#youtube-main-content {
    width: 100%;
    height: 100%;
    padding: 24px;
}

#youtube-main-content ul {
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

#youtube-main-content ul li {
    width: 24%;
    margin-bottom: 40px;
}

#youtube-main-content ul li .video-thumbnail {
    width: 100%;
}

#youtube-main-content ul li .video-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
}

#youtube-main-content ul li .video-thumbnail img {
    width: 100%;
}

#youtube-main-content ul li .video-thumbnail .time {
    position: absolute;

    background-color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 2px;

    padding: 3px 4px;

    bottom: 4px;
    right: 4px;
}

#youtube-main-content ul li .video-txt-wrap {
    margin-top: 12px;
    align-items: flex-start;
}

#youtube-main-content ul li .video-txt-wrap .image-link {
    display: inline-block;
    width: 36px;
    height: 36px;

    margin-right: 12px;
}

#youtube-main-content ul li .video-txt-wrap .image-link img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#youtube-main-content ul li .video-txt-wrap .txt {
    width: calc(100% - 48px);
}

#youtube-main-content ul li .video-txt-wrap .txt h3 {
    margin-bottom: 6px;
}

#youtube-main-content ul li .video-txt-wrap .txt h3 .title-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;

}

#youtube-main-content ul li .video-txt-wrap .txt p {

}

#youtube-main-content ul li .video-txt-wrap .txt p .channel-link {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 13px;
}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom {

}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .count,
#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .date {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 13px;
}

#youtube-main-content ul li .video-txt-wrap .txt .txt-bottom .date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 3px 3px 2px;
}


/* channel.html */
#youtube-channel-content #channel-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: greenyellow;
}

#youtube-channel-content #channel-banner {
    display: block;
}

#youtube-channel-content #channel-banner .btn-wrap {
    position: absolute;
    width: 230px;
    height: 38px;

    background-color: rgba(0, 0, 0, .3);

    bottom: 14px;
    right: 107px;
}

#youtube-channel-content #channel-banner .btn-wrap i {
    display: block;
    width: 16px;
    height: 16px;

    margin-left: 9px;

    background-image: url(../img/youtube.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-wrap h3 {
    font-size: 12px;
    color: #ffffff;
    margin-left: 8px;
}

#youtube-channel-content #channel-banner .btn-icons {
    position: absolute;
    width: 92px;
    height: 36px;

    background-color: rgba(0, 0, 0, .3);

    bottom: 15px;
    right: 15px;
}

#youtube-channel-content #channel-banner .btn-icons a.facebook {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/facebook.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-icons a.twitter {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/twitter.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

#youtube-channel-content #channel-banner .btn-icons a.kakao {
    display: block;
    width: 16px;
    height: 16px;

    margin: 7px;

    background-image: url(../img/kakao.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.channel-container {
    width: 1070px;
    margin: 0 auto;
}

#youtube-channel-content .channel-header {
    padding: 16px 0 4px;
    background-color: rgb(24, 24, 24);
}

#youtube-channel-content .channel-header .channel-profile-wrap {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 24px;
}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap {

}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap h2 {
    font-size: 25px;
    color: #ffffff;
}

#youtube-channel-content .channel-header .channel-profile-wrap .channel-profile .txt-wrap p {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 5px;
}

#youtube-channel-content .channel-header .channel-profile-wrap .btn-subscribe {
    padding: 10px 16px;
    background-color: #c00;
    border-radius: 2px;

    color: #ffffff;
    font-weight: bold;

    cursor: pointer;
}


#channel-nav {
    background-color: rgb(24, 24, 24);
}

#channel-nav ul {

}

#channel-nav li {

}

#channel-nav li a {
    display: block;
    height: 47px;

    padding: 0 32px;
    line-height: 47px;

    border-bottom: solid 3px transparent;
    color: #aaaaaa;
    font-size: 14px;
    font-weight: bold;
}

#channel-nav li a:hover {
    color: #ffffff;
}

#channel-nav li.active a {
    color: #ffffff;
    border-bottom: solid 3px #aaaaaa;
}

#channel-nav .search-wrap {
    width: 195px;
}

#channel-nav .search-wrap i {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 3px;

    background-image: url(../img/search.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;

    border-radius: 50%;

    cursor: pointer;
}

#channel-nav .search-wrap i:active {
    background-color: rgba(225, 225, 225, .3);
}

#channel-nav .search-wrap input {
    background-color: transparent;
    padding: 5px 0;
}

#channel-nav .search-wrap input::placeholder {
    color: #ffffff;
    font-weight: bold;
}

#channel-nav .search-wrap input:focus {
    border-bottom: solid 2px #ffffff;
    color: #ffffff;
}

#channel-recent {
    padding: 24px 0;
    align-items: flex-start;
}

#channel-recent img {
    width: 424px;
    height: 238px;

    margin-right: 24px;
}

#channel-recent .txt-wrap {
    width: 400px;
}

#channel-recent .txt-wrap h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #ffffff;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}

#channel-recent .txt-wrap .view {
    margin: 16px 0;
}

#channel-recent .txt-wrap .view p {
    font-size: 12px;
    font-weight: bold;
    color: #aaaaaa;
}

#channel-recent .txt-wrap .view p.count {

}

#channel-recent .txt-wrap .view p.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 1px 4px;
}

#channel-recent .txt-wrap .title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

#channel-recent .txt-wrap .link-wrap {
    margin: 17px 0;
}

#channel-recent .txt-wrap .link-wrap p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #ffffff;
}

#channel-recent .txt-wrap .link-wrap p em {
    color: #3ea6ff;
    font-style: normal;

    cursor: pointer;
}

#channel-recent .txt-wrap .more {
    font-size: 13px;
    font-weight: 600;
    color: #aaaaaa;

    cursor: pointer;
}

#channel-recent .txt-wrap .more:hover {
    color: #ffffff;
}

.channel-playlists-section {
    padding: 24px 0;
    border-top: solid 1px rgba(255, 255, 255, .2);
}

.channel-playlists-section .playlists-header {

}

.channel-playlists-section .playlists-header h3 {
    margin-right: 20px;
    font-size: 17px;
    color: #ffffff;

    cursor: pointer;
}

.channel-playlists-section .playlists-header .play-wrap {

}

.channel-playlists-section .playlists-header .play-wrap .icon-play {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;

    background-image: url(../img/play.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.channel-playlists-section .playlists-header .play-wrap .play-link {
    font-size: 15px;
    font-weight: bold;
    color: #aaaaaa;
}

.channel-playlists-section .playlists-header-description span {
    display: inline-block;

    color: #aaaaaa;
    font-size: 13px;
    font-weight: 600;

    margin-top: 10px;
}

.channel-playlists-section .playlists-body {
    margin-top: 24px;
}

.channel-playlists-section .playlists-body ul {
    align-items: flex-start;
}

.channel-playlists-section .playlists-body li {
    width: 210px;
}

.channel-playlists-section .playlists-body li .channel-thumbnail {
    width: 100%;
    height: 118px;
}

.channel-playlists-section .playlists-body li .channel-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.channel-playlists-section .playlists-body li .channel-thumbnail img {
    width: 100%;
    height: 100%;
}

.channel-playlists-section .playlists-body li .channel-thumbnail .time {
    position: absolute;

    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .8);
    padding: 2px 4px;
    border-radius: 2px;

    bottom: 4px;
    right: 4px;
}


.channel-playlists-section .playlists-body .channel-txt-wrap {
    margin-top: 8px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;

    font-size: 14px;
    line-height: 20px;

    margin-bottom: 6px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap h3 a {
    color: #ffffff;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p {
    font-size: 12px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p a {
    color: #aaaaaa;
}

.channel-playlists-section .playlists-body .channel-txt-wrap p a:hover {
    color: #ffffff;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom  {

}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 20px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.count {

}

.channel-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 2px 5px;
}

.channel-playlists-section .playlists-body .channel-txt-wrap .caption {
    background-color: #212121;
    color: #aaaaaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;

    border-radius: 2px;
    padding: 3px 4px;
}

/* explore.html */
.explore-container {
    width: 1070px;
    margin: 0 auto;
}

#explore-nav {
    padding: 12px 0 8px;
}

#explore-nav ul {

}

#explore-nav li  {
    width: 210px;
    height: 116px;
    background-color: #212121;
    border-radius: 8px;

    margin-bottom: 5px;

    overflow: hidden;
}

#explore-nav li a {
    display: block;
    height: 100%;

    padding: 20px;
}

#explore-nav li a:hover {
    background-color: #000000;
}

#explore-nav li .icon {
    display: block;
    width: 32px;
    height: 32px;

    background-repeat: no-repeat;
    background-position: center;

    margin-bottom: 20px;
}

#explore-nav li .icon.trending {
    background-image: url(../img/trending.png);
}

#explore-nav li .icon.music {
    background-image: url(../img/music-color.png);
}

#explore-nav li .icon.gaming {
    background-image: url(../img/gaming-color.png);
}

#explore-nav li .icon.movies {
    background-image: url(../img/movie-color.png);
}

#explore-nav li .icon.learning {
    background-image: url(../img/learning-color.png);
}

#explore-nav li .icon.sports {
    background-image: url(../img/sports-color.png);
}

#explore-nav li span {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .15px;
}

.explore-playlists-section {
    padding: 24px 0;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

.explore-playlists-section .playlists-header img {
    border-radius: 50%;
    width: 32px;
    height: 32px;

    margin-right: 10px;

    cursor: pointer;
}

.explore-playlists-section .playlists-header h3 {
    margin-right: 20px;
    font-size: 17px;
    color: #ffffff;

    cursor: pointer;
}

.explore-playlists-section .playlists-body {
    margin-top: 24px;
}


.explore-playlists-section .playlists-body ul {
    align-items: flex-start;
}

.explore-playlists-section .playlists-body li {
    width: 210px;
}

.explore-playlists-section .playlists-body li .channel-thumbnail {
    width: 100%;
    height: 118px;
}

.explore-playlists-section .playlists-body li .channel-thumbnail a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.explore-playlists-section .playlists-body li .channel-thumbnail img {
    width: 100%;
    height: 100%;
}

.explore-playlists-section .playlists-body li .channel-thumbnail .time {
    position: absolute;

    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .8);
    padding: 2px 4px;
    border-radius: 2px;

    bottom: 4px;
    right: 4px;
}


.explore-playlists-section .playlists-body .channel-txt-wrap {
    margin-top: 8px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;

    font-size: 14px;
    line-height: 20px;

    margin-bottom: 6px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap h3 a {
    color: #ffffff;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p {
    font-size: 12px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p a {
    color: #aaaaaa;
}

.explore-playlists-section .playlists-body .channel-txt-wrap p a:hover {
    color: #ffffff;
}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 20px;
}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.count {

}

.explore-playlists-section .playlists-body .channel-txt-wrap .txt-bottom span.date:before {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    margin: 2px 5px;
}

#popular-section {
    padding: 24px 0 30px;
}

#popular-section h2 {
    font-size: 17px;
    color: #ffffff;
}

#popular-section ul {
    margin-top: 24px;
}

#popular-section li {
    margin-bottom: 15px;
}

#popular-section a {
    align-items: flex-start;
}

#popular-section li .image-wrap {
    position: relative;
    width: 246px;
    height: 148px;

    margin-right: 16px;
}

#popular-section li .image-wrap img {
    width: 100%;
    height: 100%;
}

#popular-section li .image-wrap .time {
    position: absolute;

    border-radius: 2px;
    padding: 2px 4px;
    background-color: rgba(0, 0, 0, .8);

    color: #ffffff;
    font-size: 12px;
    font-weight: bold;

    bottom: 4px;
    right: 4px;
}

#popular-section li .txt-wrap {
    width: 600px;
}

#popular-section li .txt-wrap h3 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

#popular-section li .txt-wrap .video-info {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 22px;
}

#popular-section li .txt-wrap .video-info span:after {
    display: inline-block;
    content: &quot;&quot;;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaaaaa;

    vertical-align: top;
    margin: 10px 2px 0px 6px;
}

#popular-section li .txt-wrap .video-info span:last-child:after {
    content: none;
}

#popular-section li .txt-wrap .video-info .channel:hover {
    color: #ffffff;
}

#popular-section li .txt-wrap .video-info .count {

}

#popular-section li .txt-wrap .video-info .date {

}

#popular-section li .txt-wrap .description {
    padding-top: 8px;

    font-size: 12px;
    color: #aaaaaa;
    line-height: 18px;
}
</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>position relative 나 세부 section 별 세팅이 여전히 어려움</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>따로 찾아보거나 코딩을 하면서 브라우저로 확인해봄</p>
</li>
<li><p>복습을 하고 따로 찾아봄</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>카피캣도 좋으나 희안하게 잘 따라가지 못해서 너무 아쉬움. 시간이 짧아서 부족한 부분이 많은 것 같아서 걱정이됨.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 45]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-45</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-45</guid>
            <pubDate>Mon, 30 Aug 2021 12:13:37 GMT</pubDate>
            <description><![CDATA[<h1 id="배운내용">배운내용</h1>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt;  &lt;!-- 다른 페이지로 이동하는 것이 아니기 때문에 button태그 사용 --&gt;
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;BEST OF YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Music&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Sports&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Gaming&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Movie&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;News&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Learning&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;360º Video&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Browse channels&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;MORE FROM YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;YouTube Premium&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-9&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Setting&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-10&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Report history&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-11&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Help&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-12&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Send feedback&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;footer id=&quot;youtube-footer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Press&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Copyright&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Contact us&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Creators&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Advertise&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Developers&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;Terms&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Privacy&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Policy &amp; Safety&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;How YouTube Works&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Test new features&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;
                            Quisque velit nisi&lt;br&gt;
                            Vivamus suscipit tortor eget felis porttitor volutpat. Sed porttitor lectus nibh. Nulla quis lorem ut libero malesuada feugiat.
                        &lt;/p&gt;
                    &lt;/div&gt;

                &lt;/footer&gt;    
            &lt;/div&gt;    
        &lt;/nav&gt;

        &lt;main id=&quot;youtube-main&quot; role=&quot;main&quot;&gt;
            &lt;nav class=&quot;tag-wrap&quot;&gt;
                &lt;ul class=&quot;flex-align-between&quot;&gt;
                    &lt;li class=&quot;on&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;All&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;K-Pop&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Game shows&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Music&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Variety shows&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Korean dramas&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Live&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Playlists&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Muckbang&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Training&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#&quot;&gt;Background music&lt;/a&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt; 

            &lt;div class=&quot;youtube-banner&quot;&gt;
                &lt;div class=&quot;banner-container&quot;&gt;
                    &lt;h1 class=&quot;youtube-music-logo flex-align-start&quot;&gt;
                        &lt;i&gt;&lt;/i&gt;
                        &lt;span&gt;YouTube Music&lt;/span&gt;
                    &lt;/h1&gt;
                    &lt;p&gt;Explore music based on your unique taste&lt;/p&gt;
                    &lt;a class=&quot;btn-join&quot; href=&quot;#&quot;&gt;GEI IT NOW&lt;/a&gt;
                &lt;/div&gt;
                &lt;button class=&quot;close&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;

            &lt;div id=&quot;youtube-main-content&quot;&gt;
                &lt;ul class=&quot;flex-align-between&quot;&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;

                            &lt;div class=&quot;txt&quot;&gt;
                                &lt;h3&gt;
                                    &lt;a href=&quot;#&quot; class=&quot;title-link&quot;&gt;
                                        [MV] Hi-L(하이엘) _ Too Too (22)
                                    &lt;/a&gt;
                                &lt;/h3&gt;

                                &lt;p&gt;&lt;a href=&quot;channel.html&quot; class=&quot;channel-link&quot;&gt;1theK (원더케이)&lt;/a&gt;&lt;/p&gt;

                                &lt;div class=&quot;txt-bottom&quot;&gt;
                                    &lt;span class=&quot;count&quot;&gt;170K views&lt;/span&gt;
                                    &lt;span class=&quot;date&quot;&gt;1 week ago&lt;/span&gt;
                                &lt;/div&gt;    
                            &lt;/div&gt;    
                        &lt;/div&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;div class=&quot;video-thumbnail&quot;&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/1024x640&quot;&gt;
                                &lt;span class=&quot;time&quot;&gt;3:23&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;video-txt-wrap flex-align-start&quot;&gt;
                            &lt;a href=&quot;#&quot; class=&quot;image-link&quot;&gt;
                                &lt;img class=&quot;profile&quot; src=&quot;https://via.placeholder.com/36x36&quot;&gt;
                            &lt;/a&gt;
</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>앞에서 배웠던 내용들이 잘 생각이 안남</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습함 추가로 따로 찾아봄</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>생각보다 복잡한 것들이 많아서 지금까지 뭘했는지 잘 모르겠음. 그래도 포기하지 않고 연습하는 방법 밖에 없어서 좀 답답함.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 44]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-44</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-44</guid>
            <pubDate>Fri, 27 Aug 2021 12:03:54 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt; 
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;BEST OF YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Music&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Sports&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Gaming&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Movie&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;News&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Learning&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;circle-icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;360º Video&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-6&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Browse channels&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-title-wrap&quot;&gt;
                        &lt;h2&gt;MORE FROM YOUTUBE&lt;/h2&gt;
                    &lt;/div&gt;    
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-7&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;YouTube Premium&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-8&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Live&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-9&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Setting&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-10&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Report history&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-11&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Help&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-12&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Send feedback&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;footer id=&quot;youtube-footer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Press&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Copyright&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Contact us&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Creators&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Advertise&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Developers&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;Terms&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Privacy&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Policy &amp; Safety&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;How YouTube Works&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;Test new features&lt;/a&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;
                            동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이
                        &lt;/p&gt;
                    &lt;/div&gt;
</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>카피캣을 하면서 완벽하게 같게 만들지는 못해서 어려움</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>여전히 아는게 별로 없어서 복습을 함</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>효과적으로 배울 수 있는 방법이 없는지 의문이 듦. 영상을 보고 카피캣을 하는데 여전히 어렵게만 느껴짐</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 43]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-43</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-43</guid>
            <pubDate>Thu, 26 Aug 2021 12:22:12 GMT</pubDate>
            <description><![CDATA[<h1 id="배운내용">배운내용</h1>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;유튜브&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
        &lt;nav id=&quot;youtube-top-nav&quot;&gt;
            &lt;div class=&quot;youtube-top-wrap flex-align-between&quot;&gt;
                &lt;div class=&quot;nav-left flex-align-start&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu&quot;&gt;&lt;/button&gt;  &lt;!-- 다른 페이지로 이동하는 것이 아니기 때문에 button태그 사용 --&gt;
                    &lt;h1&gt;
                        &lt;a class=&quot;youtube-logo-wrap flex-align-start&quot; href=&quot;#&quot;&gt;
                            &lt;i class=&quot;youtube-logo&quot;&gt;&lt;/i&gt;
                            &lt;span&gt;YouTube&lt;/span&gt;
                            &lt;p&gt;KR&lt;/p&gt;
                        &lt;/a&gt;
                    &lt;/h1&gt;
                &lt;/div&gt;    
                &lt;div class=&quot;nav-center flex-align-start&quot;&gt;
                    &lt;div class=&quot;search-wrap flex-align-start&quot;&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;Search&quot;&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                    &lt;button class=&quot;btn-voice&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class=&quot;nav-right flex-align-end&quot;&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-1&quot;&gt;&lt;/button&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-menu btn-menu-2&quot;&gt;&lt;/button&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;

        &lt;nav id=&quot;youtube-left-nav&quot;&gt;
            &lt;div id=&quot;youtube-left-content&quot;&gt;
                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;on flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-1&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Home&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;explore.html&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-2&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Explore&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-3&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Subscriptions&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-4&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;Library&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;flex-align-start&quot;&gt;
                                    &lt;i class=&quot;icon icon-5&quot;&gt;&lt;/i&gt;
                                    &lt;span&gt;History&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;nav-section&quot;&gt;
                    &lt;div class=&quot;nav-body&quot;&gt;
                        &lt;div class=&quot;txt-wrap&quot;&gt;
                            &lt;p&gt;Sign in to like videos, commemnt, and subascribe.&lt;/p&gt;
                            &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;SIGN IN&lt;/a&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;        </code></pre><p>CSS</p>
<pre><code>* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: &#39;Nanum Gothic&#39;, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;

    background-color: #181818;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img    {
    vertical-align: middle;
}

button {
    background-color: transparent;
    border: none;
}

input {
    outline: none;
    border: none;
}

input:focus {
    outline: none;
}

/* 디폴트 작업 */
#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1300px;
}

.flex-align-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-align-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-align-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

/* 상단 영역 */
#youtube-top-nav {
    position: fixed;

    width: 100%;
    min-width: 1380px;
    height: 56px;
    background-color: #212121;

    padding: 0 16px;

    z-index: 999999;
}

#youtube-top-nav .nav-left {
    height: 56px;
}

#youtube-top-nav .nav-left .btn-menu {
    width: 40px;
    height: 40px;
    padding: 8px;

    background-image: url(../img/menu.png);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;

    cursor: pointer;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap {
    margin-left: 8px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap .youtube-logo {
    display: block;

    width: 30px;
    height: 28px;
    background-image: url(../img/youtube.png);
    background-size: 30px 28px;
    background-repeat: no-repeat;
    background-position: 50% 35%;

    margin-right: 3px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap span {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

#youtube-top-nav .nav-left h1 .youtube-logo-wrap p {
    color: #aaa;
    font-size: 1px;
    margin-top: -17px;
    margin-left: 5px;
}

#youtube-top-nav .nav-right {
    height: 56px;
}

#youtube-top-nav .nav-right .btn-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 16px;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-1 {
    background-image: url(../img/menu-2.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-2 {
    background-image: url(../img/more.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}

#youtube-top-nav .nav-right .btn-login {
    display: inline-block;
    border: solid 1px #3ea6ff;
    padding: 10px 12px 8px;

    color: #3ea6ff;
    font-size: 14px;
    font-weight: bold;
}

#youtube-top-nav .nav-center {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
}

#youtube-top-nav .nav-center .search-wrap {
    width: 640px;
    height: 30px;
}    

#youtube-top-nav .nav-center .search-wrap input {
    width: calc(100% - 65px);
    height: 30px;

    background-color: hsl(0, 0%, 7%);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 2px 0 0 2px;

    padding: 2px 6px;

    font-size: 14px;
}

#youtube-top-nav .nav-center .search-wrap input:focus {
    border: solid 1px #065fd4;
    color: #aaa;
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap input::placeholder {
    font-weight: bold;
}

#youtube-top-nav .nav-center .search-wrap .btn-search {
    width: 65px;
    height: 30px;

    background-image: url(../img/search.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: hsla(0, 0%, 100%, .08);
    border: solid 1px hsl(0, 0%, 18.82%);
    border-radius: 0 2px 2px 0;

    cursor: pointer;
}

#youtube-top-nav .nav-center .btn-voice {
    width: 35px;
    height: 35px;

    background-color: black;
    border-radius: 50%;
    background-image: url(../img/voice.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;

    margin-left: 8px;

    cursor: pointer;
}
</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>유투브 연결 링크별 세부 조정 내역</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>코드를 홀로 뜯어보며 해결</p>
</li>
<li><p>복습 또 복습</p>
</li>
<li><p>웹 페이지의 검사기능을 이용해서 각 항목들을 뜯어봄</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>네이버 카피캣에 비해 더 흥미롭게 느껴짐 차이점이 랜딩페이지가 굉장히 복잡하고 뭔가 많은 네이버에 비해 단순한 느낌이었는데 또 유투브는 영상기반 콘텐츠가 주로 모여있어서인지 독특하게 느껴짐.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 42]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-42</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-42</guid>
            <pubDate>Wed, 25 Aug 2021 11:48:23 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;CSS 추가 설명&lt;/title&gt;

    &lt;!-- &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/reset.css&quot;&gt; --&gt;
    &lt;!-- &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/normalize.css&quot;&gt; --&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
    &lt;!-- 링크도 케스케이딩이 적용된다 --&gt;

&lt;/head&gt;
&lt;body&gt;

    &lt;h1&gt;Hello World&lt;/h1&gt;
    &lt;h2&gt;Hello World&lt;/h2&gt;
    &lt;h3&gt;Hello World&lt;/h3&gt;
    &lt;h4&gt;Hello World&lt;/h4&gt;
    &lt;h5&gt;Hello World&lt;/h5&gt;
    &lt;h6&gt;Hello World&lt;/h6&gt;

    &lt;header id=&quot;intro&quot;&gt;
        &lt;p&gt;Header P&lt;/p&gt;
    &lt;/header&gt;

    &lt;footer id=&quot;footer&quot;&gt;
        &lt;p&gt;Footer P&lt;/p&gt;
    &lt;/footer&gt;

&lt;/body&gt;
&lt;/html&gt;

-----

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=&quot;button&quot;],
[type=&quot;reset&quot;],
[type=&quot;submit&quot;] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=&quot;button&quot;]::-moz-focus-inner,
[type=&quot;reset&quot;]::-moz-focus-inner,
[type=&quot;submit&quot;]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=&quot;button&quot;]:-moz-focusring,
[type=&quot;reset&quot;]:-moz-focusring,
[type=&quot;submit&quot;]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=&quot;checkbox&quot;],
[type=&quot;radio&quot;] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=&quot;number&quot;]::-webkit-inner-spin-button,
[type=&quot;number&quot;]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=&quot;search&quot;] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=&quot;search&quot;]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

-----

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: &#39;&#39;;
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* html의 고유의 css를 초기화 시킬 때 사용 */

-----

/* html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

a {

} */

/* --- */


/* h1 {
  color: blue;
}

h1 {
  color: red;
} */

/* cascading 때문에 나중에 적은 것이 적용된다. */

/* --- */

/* :root {
  --black: #18181a;
  --purple: #9147ff;
  --font-size-40: 40px;
} */

:root {
  --black: #18181a;
  --brand-color: #9147ff;
  --font-size-40: 40px;
}

h1 {
  background-color: var(--black);
  font-size: var(--font-size-40);
  color: var(--purple);
}

h2 {
  color: var(--brand-color);
}


#intro {
    --font-color: blue;
    --font-color: 50px;
}

/* 변수는 인트로 안에서만 사용 가능 */

#intro p {
    font-size: var(--font-size);
    color: var(--font-color);
}

#footer p {
    font-size: var(--font-size);
    color: var(--font-color);
}


</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>변수를 적용시키는 부분</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>조금 더 찾아봄, 복습을 함</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>새로운 기술 적용이 신기함, 변수를 지정하는 것에서 몇 가지 의문이 더 생김</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 41]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-41</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-41</guid>
            <pubDate>Tue, 24 Aug 2021 11:00:33 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<pre><code>* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #0e0e10;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

.clearfix {
    clear: both;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

input, textarea {
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6, p, span, input, button, a {
    color: #ffffff;
}

.btn-purple {
    background-color: #9147ff;
    color: #ffffff;
}

.font-purple {
    color: #9147ff;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* 상단 네비 영역 */

#top-nav {
    position: fixed;
    width: 100%;
    min-width: 1340px;
    height: 50px;
    background-color: #0e0e10;
    padding: 0 15px;

    z-index: 999;
}

#top-nav .nav-wrap .nav-left .logo a img {
    width: 24px;
    height: 28px;
}

#top-nav .nav-wrap .nav-left ul li {
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
}

#top-nav .nav-wrap .nav-left ul li:first-child {
    padding-right: 0;
}

#top-nav .nav-wrap .nav-left ul li:first-child a::after {
    display: inline-block;
    position: relative;
    content: &quot;&quot;;
    width: 1px;
    height: 30px;
    background-color: gray;
    margin-left: 20px;

    top: 8px;
}

#top-nav .nav-wrap .nav-left ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
}

#top-nav .nav-wrap .nav-left .more a {
    display: block;
    height: 50px;
    padding-left: 20px;

    line-height: 50px;
    font-size: 20px;
}

 #top-nav .nav-wrap .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#top-nav .nav-wrap .nav-center .search-wrap {
    overflow: hidden;

    width: 380px;
    height: 36px;
    border-radius: 5px;
    background-color: gray;
}

#top-nav .nav-wrap .nav-center .search-wrap input {
    width: calc(100% - 34px);
    height: 100%;
    background-color: darkgrey;
    padding: 5px 10px;
}

#top-nav .nav-wrap .nav-center .search-wrap .btn-search {
    width: 34px;
    height: 100%;
    background: url(../../naver-ex/img/search-white.png) no-repeat;
    background-size: 24px;
    background-position: 5px;
}

#top-nav .nav-wrap .nav-right .mark-wrap {
    position: relative;
}

#top-nav .nav-wrap .nav-right .mark-wrap .icon-mark {
    display: block;
    width: 20px;
    height: 20px;
    background-color: greenyellow;
}

#top-nav .nav-wrap .nav-right .mark-wrap .alarm {
    position: absolute;
    border-radius: 15px;
    background-color: red;
    padding: 2px 5px;

    color: #ffffff;
    font-size: 14px;
    top: -12px;
    right: -12px;
}

#top-nav .nav-wrap .nav-right .btn {
    width: 60px;
    height: 30px;
    border-radius: 5px;

    text-align: center;
    line-height: 30px;
    font-size: 12px;
}

#top-nav .nav-wrap .nav-right .btn-login {
    margin-left: 20px;
    background-color: gray;
    color: #ffffff;
}

#top-nav .nav-wrap .nav-right .btn-purple {
    margin-left: 10px;
}

#top-nav .nav-wrap .nav-right .btn-profile {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-left: 10px;
}

/* 컨텐츠 영역 */
.content {
    overflow-y: auto;
    position: absolute;
    top: 50px;
    left: 240px;

    bottom: 0;
    right: 0;
}

.content h1 {
    font-size: 40px;
}

.content #content-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url(../img/game.jpg) no-repeat center; 
    background-size: cover;
}

.content #content-banner .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);

    top: 0;
    left: 0;
}

.content #content-banner .layer .txt-wrap {
    position: absolute;
    top: 170px;
    right: 200px;
}

.content .content-container {
    width: 1060px;
    margin: 0 auto;
}

/* 태그 디폴트 */
.content-container .tag-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin-top: 5px;
}

.content-container .tag-wrap .tag {
    font-size: 12px;
    font-weight: bold;
    color: #d3d3d3;
    background-color: #ffffff26;
    border-radius: 10px;

    padding: 3px 8px;

    margin-right: 5px;
}

.content-container .tag-wrap .tag:hover {
    background-color: rgb(255, 255, 255, 0.2);
}    

.content-container .tag-wrap .tag:last-child {
    margin-left: 0;
}

.content-container .txt-wrap {

}

.content-container .txt-wrap h3 {
    font-size: 16px;
    color: #dedee3;
    letter-spacing: 1px;
    margin-bottom: 4px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-container .txt-wrap h3:hover {
    color: #9147ff;
}


/* 비디오 섹션 */
.video-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;

    border-bottom: solid 1px #ffffff1a;
}
.video-section .title-wrap {
    padding-bottom: 10px;
}

.video-section .title-wrap h2 {
    font-size: 20px;
}

.video-section .video-wrap {

}

.video-section .video-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.video-section .video-wrap li {
    width: 32%;
    margin-right: auto;
}

.video-section .video-wrap li:last-child {
    margin-right: 0;
}

.video-section .video-wrap a {

}

.video-section .video-wrap .image-wrap {
    position: relative;
    width: 100%;
    height: 183px;
    background-color: #9147ff;
}

.video-section .video-wrap .image-wrap .image-wrap-sub {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.15s linear;
}

.video-section .video-wrap .image-wrap:hover .image-wrap-sub {
    transform: translate(6px, -6px);
}

.video-section .video-wrap .image-wrap img {
    width: 100%;
    height: 100%;
}

.video-section .video-wrap .image-wrap .mark {
    position: absolute;

    top: 10px;
    left: 10px;

    border-radius: 5px;
    background-color: red;

    padding: 3px 5px;

    font-size: 14px;
    font-weight: bold;
}

.video-section .video-wrap .image-wrap .count {
    position: absolute;

    bottom: 10px;
    left: 10px;

    border-radius: 2px;
    background-color: rgba(0, 0, 0, .6);

    padding: 2px;

    font-size: 13px;
}

.video-section .video-wrap .video-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;

    margin-top: 10px;
}

.video-section .video-wrap .video-bottom .thumbnail {
    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.video-section .video-wrap .video-bottom .txt-wrap {
    width: calc(100% - 50px);
}

.video-section .video-wrap .video-bottom .txt-wrap .source,
.video-section .video-wrap .video-bottom .txt-wrap .game {
    font-size: 13px;
    color: #adadb8;
    margin-top: 3px;
}

.video-section .video-wrap .video-bottom .txt-wrap .source:hover,
.video-section .video-wrap .video-bottom .txt-wrap .game:hover {
    color: #9147ff;
}

.video-section .btn-more {
    position: absolute;

    width: 100px;
    height: 30px;
    background-color: #0e0e10;
    border-radius: 20px;
    padding: 0 10px;

    text-align: center;
    line-height: 30px;
    font-weight: bold;
    color: #bf94ff;

    bottom: -16px;
    left: 50%;
    transform: translate(-50%);

    cursor: pointer;
}

.video-section .btn-more:hover {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 4px;
}

</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li><p>트위치 페이지 영상이 있는 새로운 색상코드</p>
</li>
<li><p>기존에 있던 양식은 눈에 익으나 HTML제외 기타 부분이 궁금함</p>
</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>새로운 색상코드를 뜯어서 봄</p>
</li>
<li><p>복습</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>HTML 큰 구조나 어떻게 적용했는지 알 것 같음 그러나 여전히 세부적인 내용을 잘 모르겠음</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 40]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-40</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-40</guid>
            <pubDate>Mon, 23 Aug 2021 11:20:46 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<p>html</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;트위치&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;nav id=&quot;top-nav&quot;&gt;
        &lt;div class=&quot;nav-wrap&quot;&gt;
            &lt;div class=&quot;nav-left&quot;&gt;
                &lt;h1 class=&quot;logo&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;
                        &lt;img src=&quot;https://via.placeholder.com/24x28&quot;&gt;
                    &lt;/a&gt;
                &lt;/h1&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;탐색&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;e스포츠&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;음악&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
                &lt;div class=&quot;more&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;더보기&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;nav-center&quot;&gt;
                &lt;div class=&quot;search-wrap&quot;&gt;
                    &lt;input type=&quot;text&quot; placeholder=&quot;검색&quot;&gt;
                    &lt;button class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;nav-right&quot;&gt;
                &lt;div class=&quot;mark-wrap&quot;&gt;
                    &lt;i class=&quot;icon-mark&quot;&gt;&lt;/i&gt;
                    &lt;span class=&quot;alarm&quot;&gt;43&lt;/span&gt;
                &lt;/div&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;로그인&lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-purple&quot;&gt;회원가입&lt;/a&gt;
                &lt;button class=&quot;btn-profile&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;
        &lt;/div&gt;    
    &lt;/nav&gt;

    &lt;div class=&quot;main-container&quot;&gt;
        &lt;div class=&quot;left-area&quot;&gt;
            &lt;div class=&quot;channel-wrap&quot;&gt;
                &lt;div class=&quot;channel-header&quot;&gt;
                    &lt;h3&gt;추천 채널&lt;/h3&gt;
                    &lt;i class=&quot;icon-arrow&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;channel-body&quot;&gt;
                    &lt;ul&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
&lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;/ul&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;join-wrap&quot;&gt;
                &lt;div class=&quot;txt-wrap&quot;&gt;
                    &lt;h2&gt;&lt;span class=&quot;font-purple&quot;&gt;Twitch&lt;/span&gt; 커뮤니티와 함께하세요!&lt;/h2&gt;
                    &lt;p&gt;어디서나 최고의 생방송을 즐겨보세요.&lt;/p&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-purple&quot;&gt;회원가입&lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;info-wrap&quot;&gt;
                &lt;p&gt;상표명: Sed porttitor lectus nibh. &lt;/p&gt;
                &lt;p&gt;대표자: Abcde Fghij, KLMN&lt;/p&gt;
                &lt;p&gt;주소: Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Nulla porttitor accumsan tincidunt. Cras ultricies ligula sed magna dictum porta.&lt;/p&gt;
                &lt;p&gt;123-4567-890&lt;/p&gt;
                &lt;p&gt;호스팅 제공업체: Quisque velit nisi&lt;/p&gt;

                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;지원팀에 문의&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;판매 약관&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;사업자 정보&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;div class=&quot;content&quot;&gt;
            &lt;div id=&quot;content-banner&quot;&gt;
                &lt;div class=&quot;layer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;h2&gt;Hello&lt;/h2&gt;
                        &lt;p&gt;Nice to meet you&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;content-container&quot;&gt;
                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;취향 저격 생방송 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
&lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;&lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;category-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;취향 저격 &lt;span class=&quot;font-purple&quot;&gt;카테고리&lt;/span&gt;&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;category-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;Just Chatting&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                            &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;모두의 후원 열차에 탑승해 주세요!&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;League of Legends&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;

                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;LOST ARK&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;


                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;footer&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;상표명 : Sed porttitor lectus nibh.&lt;/p&gt;
                        &lt;p&gt;대표자: Abcde Fghij, KLMN&lt;/p&gt;
                        &lt;p&gt;주소: Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.&lt;/p&gt;
                        &lt;p&gt;123-4567-890&lt;/p&gt;
                        &lt;p&gt;호스팅 제공업체: Quisque velit nisi&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;footer-bottom&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;지원팀에 문의&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;판매 약관&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;사업자 정보&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/footer&gt;

            &lt;/div&gt;


        &lt;/div&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</code></pre><p>css</p>
<pre><code>/* 컨텐츠 영역 */
.content {
    overflow-y: auto;
    position: absolute;
    top: 50px;
    left: 240px;

    bottom: 0;
    right: 0;
}

.content h1 {
    font-size: 40px;
}

.content #content-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url(../img/game.jpg) no-repeat center; 
    background-size: cover;
}

.content #content-banner .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);

    top: 0;
    left: 0;
}

.content #content-banner .layer .txt-wrap {
    position: absolute;
    top: 170px;
    right: 200px;
}

.content .content-container {
    width: 1060px;
    margin: 0 auto;
}

/* 태그 디폴트 */
.content-container .tag-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin-top: 5px;
}

.content-container .tag-wrap .tag {
    font-size: 12px;
    font-weight: bold;
    color: #d3d3d3;
    background-color: #ffffff26;
    border-radius: 10px;

    padding: 3px 8px;

    margin-right: 5px;
}

.content-container .tag-wrap .tag:hover {
    background-color: rgb(255, 255, 255, 0.2);
}    

.content-container .tag-wrap .tag:last-child {
    margin-left: 0;
}

.content-container .txt-wrap {

}

.content-container .txt-wrap h3 {
    font-size: 16px;
    color: #dedee3;
    letter-spacing: 1px;
    margin-bottom: 4px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-container .txt-wrap h3:hover {
    color: #9147ff;
}

/* 비디오 섹션 */
.video-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;

    border-bottom: solid 1px #ffffff1a;
}

.video-section .title-wrap {
    padding-bottom: 10px;
}

.video-section .title-wrap h2 {
    font-size: 20px;
}

.video-section .video-wrap {

}

.video-section .video-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.video-section .video-wrap li {
    width: 32%;
    margin-right: auto;
}

.video-section .video-wrap li:last-child {
    margin-right: 0;
}

.video-section .video-wrap a {

}

.video-section .video-wrap .image-wrap {
    position: relative;
    width: 100%;
    height: 183px;
    background-color: #9147ff;
}

.video-section .video-wrap .image-wrap .image-wrap-sub {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.15s linear;
}

.video-section .video-wrap .image-wrap:hover .image-wrap-sub {
    transform: translate(6px, -6px);
}

.video-section .video-wrap .image-wrap img {
    width: 100%;
    height: 100%;
}

.video-section .video-wrap .image-wrap .mark {
    position: absolute;

    top: 10px;
    left: 10px;

    border-radius: 5px;
    background-color: red;

    padding: 3px 5px;

    font-size: 14px;
    font-weight: bold;
}

.video-section .video-wrap .image-wrap .count {
    position: absolute;

    bottom: 10px;
    left: 10px;

    border-radius: 2px;
    background-color: rgba(0, 0, 0, .6);

    padding: 2px;

    font-size: 13px;
}

.video-section .video-wrap .video-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;

    margin-top: 10px;
}

.video-section .video-wrap .video-bottom .thumbnail {
    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.video-section .video-wrap .video-bottom .txt-wrap {
    width: calc(100% - 50px);
}

.video-section .video-wrap .video-bottom .txt-wrap .source,
.video-section .video-wrap .video-bottom .txt-wrap .game {
    font-size: 13px;
    color: #adadb8;
    margin-top: 3px;
}

.video-section .video-wrap .video-bottom .txt-wrap .source:hover,
.video-section .video-wrap .video-bottom .txt-wrap .game:hover {
    color: #9147ff;
}

.video-section .btn-more {
    position: absolute;

    width: 100px;
    height: 30px;
    background-color: #0e0e10;
    border-radius: 20px;
    padding: 0 10px;

    text-align: center;
    line-height: 30px;
    font-weight: bold;
    color: #bf94ff;

    bottom: -16px;
    left: 50%;
    transform: translate(-50%);

    cursor: pointer;
}

.video-section .btn-more:hover {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 4px;
}

/* 카테고리 영역 */
.category-section {
    padding-top: 50px;
    padding-bottom: 30px;

    border-bottom: solid 1px #ffffff1a;
}

.category-section .title-wrap {
    padding-bottom: 10px;
}

.category-section .title-wrap h2 {
    font-size: 20px;
}

.category-section .category-wrap {

}

.category-section .category-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.category-section .category-wrap li {
    width: 15%;
    margin-right: auto;
}

.category-section .category-wrap li:last-child {
    margin-right: 0;
}

.category-section .category-wrap .image-wrap {
    background-color: #9147ff;
}

.category-section .category-wrap .image-wrap img {
    width: 100%;
    height: 195px;

    transition: transform 0.15s linear;
}

.category-section .category-wrap .image-wrap:hover img {
    transform: translate(6px, -6px);
}

.category-section .category-wrap .txt-wrap {
    margin-top: 8px;
}

.category-section .category-wrap .txt-wrap .count {
    font-size: 13px;
    color: #adadb8;
    margin-top: 3px;
}

.category-section .category-wrap .txt-wrap .count:hover {
    color: #9147ff;
}

/* 하단 영역 */
footer {
    width: 100%;
    padding: 80px 0 120px;
}

footer .txt-wrap {
    text-align: center;
}

footer .txt-wrap p {
    font-size: 14px;
    color: #efeff1;
    line-height: 1.5;
}

footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-items: stretch;

    margin-top: 20px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-items: stretch;
}

footer ul li {

}

footer ul li a {
    font-size: 14px;
    color: #adadb8;
}

footer ul li a:after {
    content: &quot;&quot;;
    display: inline-block;

    width: 1px;
    height: 12px;
    background-color: #adadb8;

    margin: 0 8px;

    position: relative;
    top: 1px;
}

footer ul li a:hover {
    text-decoration: underline;
    text-decoration-color: #9147ff;
}

footer ul li:last-child a:after {
    content: none;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>background size 와 position 관련 세부조정</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>따로 복습함</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>쉬운 것 같으면서 쉽지 않고 새로운 방법이 있는데 어떻게 적용시키는지 알지 못해 아쉬웠지만 다른 방법을 찾아봄.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 39]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-39</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-39</guid>
            <pubDate>Fri, 20 Aug 2021 11:15:55 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;트위치&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;nav id=&quot;top-nav&quot;&gt;
        &lt;div class=&quot;nav-wrap&quot;&gt;
            &lt;div class=&quot;nav-left&quot;&gt;
                &lt;h1 class=&quot;logo&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;
                        &lt;img src=&quot;https://via.placeholder.com/24x28&quot;&gt;
                    &lt;/a&gt;
                &lt;/h1&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;탐색&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;e스포츠&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;음악&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
                &lt;div class=&quot;more&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;더보기&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;nav-center&quot;&gt;
                &lt;div class=&quot;search-wrap&quot;&gt;
                    &lt;input type=&quot;text&quot; placeholder=&quot;검색&quot;&gt;
                    &lt;button class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;nav-right&quot;&gt;
                &lt;div class=&quot;mark-wrap&quot;&gt;
                    &lt;i class=&quot;icon-mark&quot;&gt;&lt;/i&gt;
                    &lt;span class=&quot;alarm&quot;&gt;43&lt;/span&gt;
                &lt;/div&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;로그인&lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-purple&quot;&gt;회원가입&lt;/a&gt;
                &lt;button class=&quot;btn-profile&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;
        &lt;/div&gt;    
    &lt;/nav&gt;

    &lt;div class=&quot;main-container&quot;&gt;
        &lt;div class=&quot;left-area&quot;&gt;
            &lt;div class=&quot;channel-wrap&quot;&gt;
                &lt;div class=&quot;channel-header&quot;&gt;
                    &lt;h3&gt;추천 채널&lt;/h3&gt;
                    &lt;i class=&quot;icon-arrow&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;channel-body&quot;&gt;
                    &lt;ul&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
&lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/30&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;h4&gt;풍월량(hanryang1125)&lt;/h4&gt;
                                    &lt;span class=&quot;source&quot;&gt;Just Chatting&lt;/span&gt;
                                &lt;/div&gt;
                                &lt;span class=&quot;count&quot;&gt;6.7K&lt;/span&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;/ul&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;join-wrap&quot;&gt;
                &lt;div class=&quot;txt-wrap&quot;&gt;
                    &lt;h2&gt;&lt;span class=&quot;font-purple&quot;&gt;Twitch&lt;/span&gt; 커뮤니티와 함께하세요!&lt;/h2&gt;
                    &lt;p&gt;어디서나 최고의 생방송을 즐겨보세요.&lt;/p&gt;
                    &lt;button type=&quot;button&quot; class=&quot;btn-purple&quot;&gt;회원가입&lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;info-wrap&quot;&gt;
                &lt;p&gt;상표명: Sed porttitor lectus nibh. &lt;/p&gt;
                &lt;p&gt;대표자: Abcde Fghij, KLMN&lt;/p&gt;
                &lt;p&gt;주소: Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Nulla porttitor accumsan tincidunt. Cras ultricies ligula sed magna dictum porta.&lt;/p&gt;
                &lt;p&gt;123-4567-890&lt;/p&gt;
                &lt;p&gt;호스팅 제공업체: Quisque velit nisi&lt;/p&gt;

                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;지원팀에 문의&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;판매 약관&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;사업자 정보&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;div class=&quot;content&quot;&gt;
            &lt;div id=&quot;content-banner&quot;&gt;
                &lt;div class=&quot;layer&quot;&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;h2&gt;Hello&lt;/h2&gt;
                        &lt;p&gt;Nice to meet you&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;content-container&quot;&gt;
                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;취향 저격 생방송 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
&lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;&lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;3.6M 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;WE VS. RA - Playoffs Match 6 Round 3 | LPL Summer Split(2021)(LPL)&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;LPL&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;League of Legends&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;e-sports&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;english&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;MOBA&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;category-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;취향 저격 &lt;span class=&quot;font-purple&quot;&gt;카테고리&lt;/span&gt;&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;category-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/146x195&quot;&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;Just Chatting&lt;/h3&gt;
                                        &lt;p class=&quot;count&quot;&gt;311k 시청자&lt;/p&gt;

                                        &lt;div class=&quot;tag-wrap&quot;&gt;
                                            &lt;span class=&quot;tag&quot;&gt;IRL&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;Just Chatting&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                            &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.1K 시청자&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;⚡복닝와이드⚡&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;개복어&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;첫 번째 플레이 스루&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;모두의 후원 열차에 탑승해 주세요!&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;19.9K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;
                                                LAST RANK IN EVERY GAME GAMING NEWB TRIES TO GET BETTER...I GUESS. JEBAITED, RANK1 WARLORD CLAIMS ALL PRIZES AND AWARDS IN ALL GAMES (REAL)
                                            &lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;xQcOW&lt;/p&gt;
                                            &lt;p class=&quot;game&quot;&gt;Hivemind Gameshow&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;영어&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;일본 만화 영화&lt;/span&gt;
                                                &lt;span class=&quot;tag&quot;&gt;후원 열차&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;League of Legends&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;911명의 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;챌린저달리기 40일의 용사&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;울부짖는마오카이1 (wahahaha830)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;

                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;div class=&quot;video-section&quot;&gt;
                    &lt;div class=&quot;title-wrap&quot;&gt;
                        &lt;h2&gt;추천 &lt;span class=&quot;font-purple&quot;&gt;LOST ARK&lt;/span&gt; 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;video-wrap&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;div class=&quot;image-wrap-sub&quot;&gt;
                                            &lt;img src=&quot;https://via.placeholder.com/326x183&quot;&gt;
                                            &lt;span class=&quot;mark&quot;&gt;생방송&lt;/span&gt;
                                            &lt;span class=&quot;count&quot;&gt;1.2K 시청자&lt;/span&gt;
                                        &lt;/div&gt;    
                                    &lt;/div&gt;

                                    &lt;div class=&quot;video-bottom&quot;&gt;
                                        &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/40&quot;&gt;
                                        &lt;div class=&quot;txt-wrap&quot;&gt;
                                            &lt;h3&gt;넹북이 악세 맞춰주기&lt;/h3&gt;
                                            &lt;p class=&quot;source&quot;&gt;성대 (dakchyo)&lt;/p&gt;

                                            &lt;div class=&quot;tag-wrap&quot;&gt;
                                                &lt;span class=&quot;tag&quot;&gt;한국어&lt;/span&gt;
                                            &lt;/div&gt;
                                        &lt;/div&gt;

                                    &lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;


                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;button type=&quot;button&quot; class=&quot;btn-more&quot;&gt;더보기&lt;/button&gt;
                &lt;/div&gt;

                &lt;footer&gt;
                    &lt;div class=&quot;txt-wrap&quot;&gt;
                        &lt;p&gt;상표명 : Sed porttitor lectus nibh.&lt;/p&gt;
                        &lt;p&gt;대표자: Abcde Fghij, KLMN&lt;/p&gt;
                        &lt;p&gt;주소: Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.&lt;/p&gt;
                        &lt;p&gt;123-4567-890&lt;/p&gt;
                        &lt;p&gt;호스팅 제공업체: Quisque velit nisi&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;footer-bottom&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;지원팀에 문의&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;판매 약관&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;사업자 정보&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/footer&gt;

            &lt;/div&gt;


        &lt;/div&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre><p>CSS</p>
<pre><code>/* Default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #0e0e10;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: top;
}

input {
    outline: none;
    border: none;
}

button {
    outline: none;
    border: none;
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
input,
button,
a {
    color: #fff;
}

.btn-purple {
    background-color: #9147ff;
    color: #fff;
}

.font-purple {
    color: #9147ff;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.flex-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.main-container {
    width: 100%;
    min-width: 1340px; /* 특정 지점에서 더이상 줄어들지 않게 하기 위함 */
    /* padding-top: 50px; */
}

/* Top Nav */
#top-nav {
    /* fixed를 적용하면 크기가 제대로 잡히지 않기 때문에 width 값이 필요하다. */
    position: fixed;
    width: 100%;
    height: 50%;
    background-color: #0e0e10;
    padding: 0 15px;
    min-width: 1340px;
}

/* Nav Left */
#top-nav .nav-wrap .nav-left .log a img {
    width: 24px;
    height: 28px;
}

#top-nav .nav-wrap .nav-left ul li {
    height: 50px;
    font-size: 20px;
    padding: 0 20px;
}

#top-nav .nav-wrap .nav-left ul li:first-child {
    padding-right: 0;
}

#top-nav .nav-wrap .nav-left ul li:first-child a::after {
    position: relative;
    top: 8px;
    content: &#39;&#39;;
    display: inline-block;
    width: 1px;
    height: 30px;
    background-color: gray;

    margin-left: 20px;
}

#top-nav .nav-wrap .nav-left ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
}

#top-nav .nav-wrap .nav-left .more span {
    display: block;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    padding-left: 20px;
}

/* Nav Center */
#top-nav .nav-center {
    /* 중앙에 위치하려면 flex의 영향을 받지 않게 해야 한다. */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#top-nav .nav-center .search-wrap {
    width: 380px;
    height: 36px;
    background-color: yellow;
    overflow: hidden;
    border-radius: 5px;
}

#top-nav .nav-center .search-wrap input {
    width: calc(100% - 34px);
    height: 100%;
    background-color: gray;
}

#top-nav .nav-center .search-wrap .btn-search {
    width: 34px;
    height: 100%;
    background-color: darkgray;
}

/* Nav Right */
#top-nav .nav-right .mark-wrap {
    position: relative;
}

#top-nav .nav-right .mark-wrap .icon-mark {
    display: block;
    width: 20px;
    height: 20px;
    background-color: yellow;
    cursor: pointer;
}

#top-nav .nav-right .mark-wrap .alarm {
    position: absolute;
    border-radius: 15px;
    background-color: red;
    color: #fff;
    font-size: 14px;

    padding: 4px 8px 4px;

    top: -12px;
    right: -20px;
}

#top-nav .nav-right .btn-login {
    width: 53px;
    height: 30px;
    background-color: gray;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    margin-left: 20px;
    font-size: 12px;
}

#top-nav .nav-right .btn-purple {
    width: 53px;
    height: 30px;
    border-radius: 5px;
    margin-left: 10px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
}

#top-nav .nav-right .btn-profile {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-left: 10px;
}

/* Left Area */
.left-area {
    position: fixed;
    width: 240px;
    background-color: #202024;
    top: 50px; /* top nav 높이만큼 내림 */
    bottom: 0; /* height 100% */
    left: 0;
    overflow-y: auto; /* 스크롤 */
}

.left-area .channel-wrap .channel-header {
    padding: 10px;
}

.left-area .channel-wrap .channel-header h3 {
    font-size: 15px;
}

.left-area .channel-wrap .channel-header .icon-arrow {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
}

.left-area .channel-wrap .channel-body {
}

.left-area .channel-wrap .channel-body ul {
}

.left-area .channel-wrap .channel-body li {
}

.left-area .channel-wrap .channel-body a {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    align-items: flex-start;
}

.left-area .channel-wrap .channel-body img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.left-area .channel-wrap .channel-body .txt-wrap {
    width: 110px;
    margin-left: 10px;
}

.left-area .channel-wrap .channel-body .txt-wrap h4 {
    font-size: 13px;
}

.left-area .channel-wrap .channel-body .txt-wrap .source {
    font-size: 12px;
    color: gray;
}

.left-area .channel-wrap .channel-body .count {
    display: block;
    width: 50px;
    font-size: 12px;
}

.left-area .channel-wrap .channel-body .count::before {
    position: relative;
    content: &#39;&#39;;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;

    margin-right: 5px;
    top: 1px;
}

/* Join Wrap */
.left-area .join-wrap {
    margin: 10px;
}

.left-area .join-wrap .txt-wrap {
    padding: 20px;
    background-color: #18181a;
}

.left-area .join-wrap .txt-wrap .h2 {
    font-size: 24px;
}

.left-area .join-wrap .txt-wrap h2 span {
}

.left-area .join-wrap .txt-wrap p {
    margin-top: 10px;
    font-size: 13px;
}

.left-area .join-wrap .txt-wrap .btn-purple {
    margin-top: 10px;
    width: 53px;
    height: 30px;
    border-radius: 5px;

    line-height: 30px;
    text-align: center;
    font-size: 12px;
}

.left-area .info-wrap {
    font-size: 12px;
    margin: 0 10px 10px 10px;
}

.left-area .info-wrap p {
    color: gray;
}

.left-area .info-wrap ul {
    margin-top: 10px;
}

.left-area .info-wrap li {
}

.left-area .info-wrap li a {
    color: gray;
}

.left-area .info-wrap li a::after {
    content: &#39;&#39;;
    display: inline-block;
    width: 2px;
    height: 10px;
    background-color: gray;

    margin: 0 5px;
}

.left-area .info-wrap li:last-child a::after {
    content: none;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>신기술이 적용되었다는 점에서 어떻게 적용시키는지 몰라서 아쉬움</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>홀로 몇 가지를 찾아봄(자세히 알 수는 없는 것 같음)</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>트위치 홈페이지가 네이버 페이지보다 더 흥미로운 것 같음.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 38]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-38</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-38</guid>
            <pubDate>Thu, 19 Aug 2021 10:09:19 GMT</pubDate>
            <description><![CDATA[<h1 id="학습내용">학습내용</h1>
<ul>
<li>트위치</li>
</ul>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;트위치&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

&lt;/head&gt;
&lt;body&gt;

    &lt;nav id=&quot;top-nav&quot;&gt;
        &lt;div class=&quot;nav-wrap&quot;&gt;
            &lt;div class=&quot;nav-left&quot;&gt;
                &lt;h1 class=&quot;logo&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;
                        &lt;img src=&quot;https://via.placeholder.com/24x28&quot;&gt;
                    &lt;/a&gt;
                &lt;/h1&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;탐색&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;e스포츠&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;음악&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
                &lt;div class=&quot;more&quot;&gt;
                    &lt;a href=&quot;#&quot;&gt;더보기&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;nav-center&quot;&gt;
                &lt;div class=&quot;search-wrap&quot;&gt;
                    &lt;input type=&quot;text&quot; placeholder=&quot;검색&quot;&gt;
                    &lt;button class=&quot;btn-search&quot;&gt;&lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;nav-right&quot;&gt;
                &lt;div class=&quot;mark-wrap&quot;&gt;
                    &lt;i class=&quot;icon-mark&quot;&gt;&lt;/i&gt;
                    &lt;span class=&quot;alarm&quot;&gt;44&lt;/span&gt;
                &lt;/div&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;로그인&lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;btn-purple&quot;&gt;회원가입&lt;/a&gt;
                &lt;button class=&quot;btn-profile&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/nav&gt;

    &lt;div class=&quot;main-container&quot;&gt;
        &lt;div class=&quot;left-area&quot;&gt;
        &lt;/div&gt;
        &lt;div class=&quot;content&quot;&gt;    
        &lt;/div&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre><p>CSS</p>
<pre><code>* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #0e0e10;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

.clearfix {
    clear: both;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

input, textarea {
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6, p, span, input, button, a {
    color: #ffffff;
}

.btn-purple {
    background-color: #9147ff;
    color: #ffffff;
}

.font-purple {
    color: #9147ff;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* 상단 네비 영역 */

#top-nav {
    position: fixed;
    width: 100%;
    min-width: 1340px;
    height: 50px;
    background-color: #0e0e10;
    padding: 0 15px;

    z-index: 999;
}

#top-nav .nav-wrap .nav-left .logo a img {
    width: 24px;
    height: 28px;
}

#top-nav .nav-wrap .nav-left ul li {
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
}

#top-nav .nav-wrap .nav-left ul li:first-child {
    padding-right: 0;
}

#top-nav .nav-wrap .nav-left ul li:first-child a::after {
    display: inline-block;
    position: relative;
    content: &quot;&quot;;
    width: 1px;
    height: 30px;
    background-color: gray;
    margin-left: 20px;

    top: 8px;
}

#top-nav .nav-wrap .nav-left ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
}

#top-nav .nav-wrap .nav-left .more a {
    display: block;
    height: 50px;
    padding-left: 20px;

    line-height: 50px;
    font-size: 20px;
}

 #top-nav .nav-wrap .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#top-nav .nav-wrap .nav-center .search-wrap {
    overflow: hidden;

    width: 380px;
    height: 36px;
    border-radius: 5px;
    background-color: gray;
}

#top-nav .nav-wrap .nav-center .search-wrap input {
    width: calc(100% - 34px);
    height: 100%;
    background-color: darkgrey;
    padding: 5px 10px;
}

#top-nav .nav-wrap .nav-center .search-wrap .btn-search {
    width: 34px;
    height: 100%;
    background: url(../../naver-ex/img/search-white.png) no-repeat;
    background-size: 24px;
    background-position: 5px;
}

#top-nav .nav-wrap .nav-right .mark-wrap {
    position: relative;
}

#top-nav .nav-wrap .nav-right .mark-wrap .icon-mark {
    display: block;
    width: 20px;
    height: 20px;
    background-color: greenyellow;
}

#top-nav .nav-wrap .nav-right .mark-wrap .alarm {
    position: absolute;
    border-radius: 15px;
    background-color: red;
    padding: 2px 5px;

    color: #ffffff;
    font-size: 14px;
    top: -12px;
    right: -12px;
}

#top-nav .nav-wrap .nav-right .btn {
    width: 60px;
    height: 30px;
    border-radius: 5px;

    text-align: center;
    line-height: 30px;
    font-size: 12px;
}

#top-nav .nav-wrap .nav-right .btn-login {
    margin-left: 20px;
    background-color: gray;
    color: #ffffff;
}

#top-nav .nav-wrap .nav-right .btn-purple {
    margin-left: 10px;
}

#top-nav .nav-wrap .nav-right .btn-profile {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-left: 10px;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>반응형이 어렵다고 함. 그리고 최신기술이 적용된 홈페이지라 네이버 보다 더 어렵다고 말한 것대로 실제로 적용을 하는데 어렵게 느껴짐.</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습과 트위치 홈페이지를 뜯어봄.</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>개인적으로 길이만 긴 네이버 페이지보다 훨씬 흥미롭게 뜯어보았음. 여전히 혼자서 짜보라고 하면 버겁지만 그래도 이전보다 익숙해짐.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 37]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-37</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-37</guid>
            <pubDate>Wed, 18 Aug 2021 10:42:37 GMT</pubDate>
            <description><![CDATA[<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
    &lt;title&gt;네이버&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;header id=&quot;audio-header&quot;&gt;
        &lt;div class=&quot;audio-container&quot;&gt;
            &lt;nav id=&quot;audio-nav&quot; class=&quot;audio-flex-between&quot;&gt;
                &lt;div class=&quot;audio-nav-left audio-flex-between&quot;&gt;
                    &lt;h1 class=&quot;audio-logo&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;audio clip&lt;/a&gt;
                    &lt;/h1&gt;
                    &lt;ul class=&quot;audio-flex-end&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;audio.html&quot;&gt;&lt;span&gt;홈&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;랭킹&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;연재 채널&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;오디오북&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;active&quot;&gt;&lt;span&gt;카테고리&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;이벤트&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;

                &lt;div class=&quot;audio-nav-right audio-flex-between&quot;&gt;
                    &lt;div class=&quot;search-wrap audio-flex-start&quot;&gt;
                        &lt;i class=&quot;icon-search&quot;&gt;&lt;/i&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;무엇을 찾으세요?&quot;&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;profile-wrap&quot;&gt;
                        &lt;img src=&quot;https://ssl.pstatic.net/static/audio/img/m/2018/img/img_user.png?type=s80&quot; class=&quot;profile-img&quot;&gt;
                        &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;로그인&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/nav&gt;
        &lt;/div&gt;
    &lt;/header&gt;

    &lt;main id=&quot;audio-main&quot; class=&quot;audio-sub-main&quot; role=&quot;main&quot;&gt;
        &lt;div class=&quot;audio-container&quot;&gt;
            &lt;div id=&quot;audio-category-channel&quot; class=&quot;audio-category&quot;&gt;
                &lt;div class=&quot;title-wrap&quot;&gt;
                    &lt;h2&gt;채널&lt;/h2&gt;
                    &lt;p&gt;4,989개의 채널&lt;/p&gt;
                &lt;/div&gt;

                &lt;ul class=&quot;audio-category-lists&quot;&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;어학&lt;/h3&gt;
                            &lt;p&gt;영어, 중국어, 일본어&lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/103x103&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;

            &lt;div id=&quot;audio-category-book&quot; class=&quot;audio-category&quot;&gt;
                &lt;div class=&quot;title-wrap&quot;&gt;
                    &lt;h2&gt;오디오북&lt;/h2&gt;
                    &lt;p&gt;20,477개의 오디오북&lt;/p&gt;
                &lt;/div&gt;

                &lt;ul class=&quot;audio-category-lists&quot;&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li class=&quot;category-list&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;
                            &lt;h3&gt;소설&lt;/h3&gt;
                            &lt;p&gt;
                                세계문학,&lt;br&gt;
                                한국소설
                            &lt;/p&gt;
                            &lt;img class=&quot;thumbnail&quot; src=&quot;https://via.placeholder.com/82x119&quot;&gt;
                        &lt;/a&gt;
                    &lt;/li&gt;    
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/main&gt;

    &lt;footer id=&quot;audio-footer&quot;&gt;
        &lt;div class=&quot;audio-container&quot;&gt;
            &lt;h1&gt;
                &lt;a href=&quot;#&quot;&gt;audio clip&lt;/a&gt;
            &lt;/h1&gt;

            &lt;div class=&quot;copyright-wrap&quot;&gt;
                &lt;p&gt; 동해물과 백두산이
                    동해물과 백두산이.&lt;br&gt;
                    Curabitur aliquet quam id dui posuere blandit.
                &lt;/p&gt;
            &lt;/div&gt;

            &lt;nav class=&quot;footer-nav&quot;&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;로그인&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;오디오클립 소개&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;공식 포스트&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;콘텐츠 제안&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;이용약관&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;on&quot;&gt;개인정보처리방침&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;책임의 한계와 법적고지&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;결제관문의&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;고객센터&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt;
            &lt;a href=&quot;#&quot; class=&quot;footer-copyright-link&quot;&gt;
                &lt;span class=&quot;symbol&quot;&gt;&amp;copy;&lt;/span&gt;
                NAVER
                &lt;span&gt;Corp.&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;    
    &lt;/footer&gt;


&lt;/body&gt;
&lt;/html&gt;</code></pre><p>CSS</p>
<pre><code>/* 메인 오른쪽 */
.audio-main-right {
    float: right;
    width: 330px;
}

#audio-intro {

}

#audio-intro .audio-body ul {

}

#audio-intro .audio-body li {

}

#audio-intro .audio-body li a {

}

#audio-intro .audio-body li img {
    width: 152px;
    height: 152px;
    border-radius: 4px;
}

#audio-intro .audio-body li h2 {
    margin-top: 12px;
    font-size: 13px;
}

#audio-intro .audio-body li .author {
    margin-top: 4px;
    font-size: 12px;
    color: #959595;
}

#audio-intro .audio-body button {
    top: 82px;
}

#audio-discovery {

}

#audio-discovery .audio-header {
    position: relative;
}

#audio-discovery .audio-header h2 {
    font-size: 17px;
    line-height: 24px;
}

#audio-discovery .audio-header p {
    margin-top: 7px;
    font-size: 13px;
    color: #888;
}

#audio-discovery .audio-header .link-setting {
    display: block;
    position: absolute;

    padding: 10px 18px 8px;
    background-color: #ffffff;

    font-size: 13px;
    color: #157efb;
    font-weight: 600;
    border: solid 1px rgba(0, 0, 0, .1);
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgb(80 85 91 / 7%);

    right: 0;
    top: 0px;
}

#audio-discovery .audio-body ul {

}

#audio-discovery .audio-body li {
    width: 152px;
    margin-bottom: 40px;
}

#audio-discovery.audio-body li a {

}

#audio-discovery .audio-body li img {
    width: 100%;
    height: 152px;
    border-radius: 4px;
}

#audio-discovery .audio-body li h2 {
    margin-top: 12px;
    font-size: 13px;

    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 36px;

}

#audio-discovery .audio-body .btn-more {
    display: block;

    margin: 0 auto;
    font-size: 14px;
    color: #222;

    padding: 12px 21px 12px;
    border: solid 1px rgba(0, 0, 0, .1);
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgb(80 85 91 /7%);
    font-weight: 600;

    cursor: pointer;
}

#audio-discovery .audio-body .btn-more .color-blue {
    color: #157efb;
}

#audio-discovery .audio-body .btn-more .pages {
    color: #959595;
}

#audio-create {
    padding-top: 0 !important;
}

#audio-create .audio-body {

}

#audio-create .audio-body li {
    padding: 22px 4px;
    border-top: solid 1px #efefef
}

#audio-create .audio-body li:last-child {
    border-bottom: solid 1px #efefef;
}

#audio-create .audio-body li a {

}

#audio-create .audio-body li .txt-wrap {
    width: 225px;
}

#audio-create .audio-body li .txt-wrap h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

#audio-create .audio-body li .txt-wrap p {
    margin-top: 6px;
    font-size: 14px;
    letter-spacing: -.8px;
}

#audio-create .audio-body li .txt-wrap p.color-blue {
    color: #2db8e8;
}

#audio-create .audio-body li .txt-wrap p.color-purple {
    color: #8560f7;
}

#audio-create .audio-body li .list-bg {
    width: 80px;
    height: 64px;
}

#audio-create .audio-body li .list-bg.list-bg-1 {
    background-color: #2db8e8;
}

#audio-create .audio-body li .list-bg.list-bg-2 {
    background-color: #8560f7;
}

#audio-footer {
    background-color: #eaecef;
    padding: 48px 0 164px;
    font-family: Roboto,NotosansKR,-apple-system,BlinkMacSystemFont,&quot;Apple SD Gothic Neo&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Malgun Gothic&quot;,&quot;ë§‘ì€ ê³ ë”•&quot;,Dotum,&quot;ë‹ì›€&quot;,sans-serif;;
}

#audio-footer h1 {
    font-size: 25px;
}

#audio-footer h1 a {
    color: #959595;    
}

#audio-footer .copyright-wrap {
    margin-top: 37px;
}

#audio-footer .copyright-wrap p {
    /*letter-spacing: -.5px;*/
    font-size: 13px;
    color: #959595;
    line-height: 19px;
}

#audio-footer .footer-nav {
    margin-top: 47px;
}

#audio-footer .footer-nav ul {
    overflow: hidden;
}

#audio-footer .footer-nav li {
    float: left;
}

#audio-footer .footer-nav li a {
    font-size: 13px;
    color: #959595;
    letter-spacing: -1px;
}

#audio-footer .footer-nav li a.on {
    font-weight: 600;
}

#audio-footer .footer-nav li a:after {
    display: inline-block;

    content: &quot;&quot;;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #959595;

    /*margin: 4px 7px;*/

    vertical-align: top;
    margin: 9px 7px 0;
}

#audio-footer .footer-nav li:last-child a:after {
    content: none;
}

#audio-footer .footer-copyright-link {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #959595;
}

#audio-footer .footer-copyright-link .symbol {

}

#audio-main.audio-sub-main {
    background-color: #ffffff;
}

.audio-category {
    padding-top: 71px;
}

.audio-category .title-wrap {
    padding-bottom: 20px;
    border-bottom: solid 1px #ececec;
}

.audio-category .title-wrap h2 {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -1px;
}

.audio-category .title-wrap p {
    font-size: 14px;
    color: #959595;
    margin-top: 20px;
}

.audio-category .audio-category-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: stretch;
    margin-top: 22px;
}

.audio-category .audio-category-lists .category-list {
    width: 162px;
    height: 164px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.audio-category .audio-category-lists .category-list:nth-child(6n) {
    margin-right: 0;
}

.audio-category .audio-category-lists .category-list a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(133, 134, 247);
    border-radius: 6px;
    padding: 14px;

    overflow: hidden;
}

.audio-category .audio-category-lists .category-list a h3 {
    font-size: 19px;
    line-height: 1.3;
    color: #ffffff;
}

.audio-category .audio-category-lists .category-list a p {
    position: absolute;
    width: 80px;
    font-size: 13px;
    color: #fefefe;

    bottom: 14px;
}

.audio-category .audio-category-lists .category-list a .thumbnail {
    position: absolute;

    width: 78px;
    height: 78px;
    right: -17px;
    bottom: 0;
    transform: rotate(25deg);
    border-radius: inherit;

    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}

#audio-category-book {
    padding-bottom: 121px;
}

#audio-category-book .category-list a {
    background-color: rgb(200, 100, 108);
}

#audio-category-book .category-list .thumbnail {
    width: 82px;
    height: 119px;
    right: -25px;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li><p>카피캣을 그대로 따라했지만, 전체적인 그림을 잘 못그리겠음</p>
</li>
<li><p>코드가 길어지고 세부내용에 대한 조정을 실제 혼자서 할 수 있을지 계속 의문이 듦</p>
</li>
<li><p>세부 그림이 적용될 때의 값에 대한 어려움</p>
</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>네이버 카피캣의 처음 부분부터 다시 시작해봄</p>
</li>
<li><p>코드의 세부내용은 복습하기로 함</p>
</li>
<li><p>세부 값들에 대해 고민하지 않고 조정해보면서 맞춰봄.</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>네이버의 카테고리별로 카피캣을 따라해봤는데 과연이게 도움이 될지 의문이 드는 것은 지금까지 따라해봤지만 남이 만들어 놓은 것을 그저 따라한 것이라 과연 혼자 할 수 있을지 의문이 들기 때문임. 혼자서 더 연습이 필요하다고 생각함.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 36]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-36</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-36</guid>
            <pubDate>Tue, 17 Aug 2021 10:15:12 GMT</pubDate>
            <description><![CDATA[<h1 id="배운내용">배운내용</h1>
<p>html</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
    &lt;title&gt;네이버&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;header id=&quot;audio-header&quot;&gt;
        &lt;div class=&quot;audio-container&quot;&gt;
            &lt;nav id=&quot;audio-nav&quot; class=&quot;audio-flex-between&quot;&gt;
                &lt;div class=&quot;audio-nav-left audio-flex-between&quot;&gt;
                    &lt;h1 class=&quot;audio-logo&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;audio clip&lt;/a&gt;
                    &lt;/h1&gt;
                    &lt;ul class=&quot;audio-flex-end&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;active&quot;&gt;&lt;span&gt;홈&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;랭킹&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;연재 채널&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;오디오북&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;audio-category.html&quot;&gt;&lt;span&gt;카테고리&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;이벤트&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;

                &lt;div class=&quot;audio-nav-right audio-flex-between&quot;&gt;
                    &lt;div class=&quot;search-wrap audio-flex-start&quot;&gt;
                        &lt;i class=&quot;icon-search&quot;&gt;&lt;/i&gt;
                        &lt;input type=&quot;text&quot; placeholder=&quot;무엇을 찾으세요?&quot;&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;profile-wrap&quot;&gt;
                        &lt;img src=&quot;https://ssl.pstatic.net/static/audio/img/m/2018/img/img_user.png?type=s80&quot; class=&quot;profile-img&quot;&gt;
                        &lt;a href=&quot;#&quot; class=&quot;btn-login&quot;&gt;로그인&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/nav&gt;
        &lt;/div&gt;
    &lt;/header&gt;

    &lt;main id=&quot;audio-main&quot; role=&quot;main&quot;&gt;
        &lt;div class=&quot;audio-container audio-flex-between&quot;&gt;
            &lt;div class=&quot;audio-main-left&quot;&gt;

                &lt;div id=&quot;audio-today&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;오늘의 오디오클립&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;

                        &lt;div class=&quot;audio-slide-wrap&quot;&gt;

                            &lt;a href=&quot;#&quot;&gt;
                                &lt;div class=&quot;audio-slide audio-flex-start&quot;&gt;

                                    &lt;img src=&quot;https://via.placeholder.com/380x198&quot;&gt;
                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h3&gt;[재혼황후]오디오 드라마&lt;/h3&gt;
                                        &lt;p&gt;오디오 드라마로 만나는 레전드 웹소설&lt;/p&gt;
                                    &lt;/div&gt;

                                &lt;/div&gt;
                            &lt;/a&gt;    


                        &lt;button type=&quot;button&quot; class=&quot;btn btn-left&quot;&gt;&lt;/button&gt;
                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;

                        &lt;/div&gt;

                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-original&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;오디오클립 추천 오리지널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;시크릿 - 당신이 모르는 경제이야기&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;인포스탁데일리&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;시크릿 - 당신이 모르는 경제이야기&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;인포스탁데일리&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;시크릿 - 당신이 모르는 경제이야기&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;인포스탁데일리&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;시크릿 - 당신이 모르는 경제이야기&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;인포스탁데일리&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;시크릿 - 당신이 모르는 경제이야기&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;인포스탁데일리&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-playlist&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;나를 위한 플레이리스트&lt;/h2&gt;
                        &lt;p&gt;당신을 위해 메일 새롭게 업데이트 됩니다.&lt;/p&gt;

                        &lt;a href=&quot;#&quot; class=&quot;link-total&quot;&gt;전체보기&lt;/a&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                        &lt;i class=&quot;icon-like&quot;&gt;&lt;/i&gt;
                                        &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;이번주 베스트 추천&lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                        &lt;i class=&quot;icon-like&quot;&gt;&lt;/i&gt;
                                        &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;이번주 베스트 추천&lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                        &lt;i class=&quot;icon-like&quot;&gt;&lt;/i&gt;
                                        &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;이번주 베스트 추천&lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                        &lt;i class=&quot;icon-like&quot;&gt;&lt;/i&gt;
                                        &lt;i class=&quot;icon-play&quot;&gt;&lt;/i&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;이번주 베스트 추천&lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-live&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;라이브 ON&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;
                                        &lt;div class=&quot;live-state&quot;&gt;
                                            &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                    &lt;h3&gt;[노래의말들] 가사 읽는 밤&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;8. 15. 21:00 예정&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;
                                        &lt;div class=&quot;live-state&quot;&gt;
                                            &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                    &lt;h3&gt;[노래의말들] 가사 읽는 밤&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;8. 15. 21:00 예정&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;
                                        &lt;div class=&quot;live-state&quot;&gt;
                                            &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                    &lt;h3&gt;[노래의말들] 가사 읽는 밤&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;8. 15. 21:00 예정&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li class=&quot;active&quot;&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;
                                        &lt;div class=&quot;live-state&quot;&gt;
                                            &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                    &lt;h3&gt;☂빗소리 ASMR 잠못드는 밤&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;라이브 중&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li class=&quot;active&quot;&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;
                                        &lt;div class=&quot;live-state&quot;&gt;
                                            &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                    &lt;h3&gt;☂빗소리 ASMR 잠못드는 밤&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;라이브 중&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-book&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;셀럽들의 목소리로 듣는 베스트셀러&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120x170&quot;&gt;
                                        &lt;span class=&quot;status&quot;&gt;요약본&lt;/span&gt;
                                        &lt;span class=&quot;time&quot;&gt;1시간 58분&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;은둔의 즐거움&lt;/h3&gt;
                                    &lt;span class=&quot;author-1&quot;&gt;신기율 저&lt;/span&gt;
                                    &lt;span class=&quot;author-2&quot;&gt;금새록 낭독&lt;/span&gt;
                                    &lt;span class=&quot;price&quot;&gt;대여 3,000원&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120x170&quot;&gt;
                                        &lt;span class=&quot;time&quot;&gt;1시간 4분&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;당신의 자리 - 나무로 자라는 방법&lt;/h3&gt;
                                    &lt;span class=&quot;author-1&quot;&gt;신기율 저&lt;/span&gt;
                                    &lt;span class=&quot;author-2&quot;&gt;금새록 낭독&lt;/span&gt;
                                    &lt;span class=&quot;price&quot;&gt;대여 3,000원&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120x170&quot;&gt;
                                        &lt;span class=&quot;status&quot;&gt;요약본&lt;/span&gt;
                                        &lt;span class=&quot;time&quot;&gt;1시간 58분&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;은둔의 즐거움&lt;/h3&gt;
                                    &lt;span class=&quot;author-1&quot;&gt;신기율 저&lt;/span&gt;
                                    &lt;span class=&quot;author-2&quot;&gt;금새록 낭독&lt;/span&gt;
                                    &lt;span class=&quot;price&quot;&gt;대여 3,000원&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120x170&quot;&gt;
                                        &lt;span class=&quot;status&quot;&gt;요약본&lt;/span&gt;
                                        &lt;span class=&quot;time&quot;&gt;1시간 58분&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;은둔의 즐거움&lt;/h3&gt;
                                    &lt;span class=&quot;author-1&quot;&gt;신기율 저&lt;/span&gt;
                                    &lt;span class=&quot;author-2&quot;&gt;금새록 낭독&lt;/span&gt;
                                    &lt;span class=&quot;price&quot;&gt;대여 3,000원&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;div class=&quot;image-wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/120x170&quot;&gt;
                                        &lt;span class=&quot;status&quot;&gt;요약본&lt;/span&gt;
                                        &lt;span class=&quot;time&quot;&gt;1시간 58분&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;은둔의 즐거움&lt;/h3&gt;
                                    &lt;span class=&quot;author-1&quot;&gt;신기율 저&lt;/span&gt;
                                    &lt;span class=&quot;author-2&quot;&gt;금새록 낭독&lt;/span&gt;
                                    &lt;span class=&quot;price&quot;&gt;대여 3,000원&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-channel&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;새로 나온 채널&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;향기나는편지&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;향기나는편지&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;향기나는편지&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;향기나는편지&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;향기나는편지&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;향기나는편지&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;향기나는편지&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;향기나는편지&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/120&quot;&gt;

                                    &lt;h3&gt;향기나는편지&lt;/h3&gt;
                                    &lt;span class=&quot;author&quot;&gt;향기나는편지&lt;/span&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;audio-main-right&quot;&gt;
                &lt;div id=&quot;audio-intro&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;인기 채널을 소개합니다.&lt;/h2&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152&quot;&gt;
                                    &lt;h2&gt;오늘의 회화 - 영어&lt;/h2&gt;
                                    &lt;span class=&quot;author&quot;&gt;네이버&lt;/span&gt;    
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152&quot;&gt;
                                    &lt;h2&gt;내 남편과 결혼해줘&lt;/h2&gt;
                                    &lt;span class=&quot;author&quot;&gt;네이버&lt;/span&gt;    
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;

                        &lt;button type=&quot;button&quot; class=&quot;btn btn-right&quot;&gt;&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-discovery&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-header&quot;&gt;
                        &lt;h2&gt;
                            오늘의 발견&lt;br&gt;
                            요즘 많이 든는 채널👍
                        &lt;/h2&gt;
                        &lt;p&gt;8월 13일 0시부터 24시까지 많이 들은 채널입니다.&lt;/p&gt;

                        &lt;a href=&quot;#&quot; class=&quot;link-setting&quot;&gt;관심설정&lt;/a&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul class=&quot;audio-flex-between&quot;&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                    &lt;h2&gt;[자장가] 피아노 테라피 (Relaxing Happy Music)&lt;/h2&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                    &lt;h2&gt;[자장가] 피아노 테라피 (Relaxing Happy Music)&lt;/h2&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;    
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                    &lt;h2&gt;[자장가] 피아노 테라피 (Relaxing Happy Music)&lt;/h2&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;    
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot;&gt;
                                    &lt;img src=&quot;https://via.placeholder.com/152x152&quot;&gt;
                                    &lt;h2&gt;[자장가] 피아노 테라피 (Relaxing Happy Music)&lt;/h2&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;        
                        &lt;/ul&gt;

                        &lt;button class=&quot;btn-more&quot;&gt;
                            &lt;span class=&quot;color-blue&quot;&gt;더 많이&lt;/span&gt; 발견하기 1 &lt;span class=&quot;pages&quot;&gt;/ 5&lt;/span&gt; 
                        &lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div id=&quot;audio-create&quot; class=&quot;audio-section&quot;&gt;
                    &lt;div class=&quot;audio-body&quot;&gt;
                        &lt;ul&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;audio-flex-between&quot;&gt;
                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h2&gt;오디오클립 채널을 만들어보세요!&lt;/h2&gt;
                                        &lt;p class=&quot;color-blue&quot;&gt;콘텐츠 제안하기&lt;/p&gt;
                                    &lt;/div&gt;
                                    &lt;div class=&quot;list-bg list-bg-1&quot;&gt;&lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;audio-flex-between&quot;&gt;
                                    &lt;div class=&quot;txt-wrap&quot;&gt;
                                        &lt;h2&gt;즐거움이 들린다! 오디오클립&lt;/h2&gt;
                                        &lt;p class=&quot;color-purple&quot;&gt;오디오클립이 궁금하시다면?&lt;/p&gt;
                                    &lt;/div&gt;
                                    &lt;div class=&quot;list-bg list-bg-2&quot;&gt;&lt;/div&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/main&gt;

    &lt;footer id=&quot;audio-footer&quot;&gt;
        &lt;div class=&quot;audio-container&quot;&gt;
            &lt;h1&gt;
                &lt;a href=&quot;#&quot;&gt;audio clip&lt;/a&gt;
            &lt;/h1&gt;

            &lt;div class=&quot;copyright-wrap&quot;&gt;
                &lt;p&gt;
                    Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.&lt;br&gt; Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a.&lt;br&gt;
                    Curabitur aliquet quam id dui posuere blandit.
                &lt;/p&gt;
            &lt;/div&gt;

            &lt;nav class=&quot;footer-nav&quot;&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;로그인&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;오디오클립 소개&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;공식 포스트&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;콘텐츠 제안&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;이용약관&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;on&quot;&gt;개인정보처리방침&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;책임의 한계와 법적고지&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;결제관문의&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;고객센터&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt;
            &lt;a href=&quot;#&quot; class=&quot;footer-copyright-link&quot;&gt;
                &lt;span class=&quot;symbol&quot;&gt;&amp;copy;&lt;/span&gt;
                NAVER
                &lt;span&gt;Corp.&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;    
    &lt;/footer&gt;


&lt;/body&gt;
&lt;/html&gt;</code></pre><p>CSS</p>
<pre><code>/* 네이버 오디오 */
.audio-container {
    width: 1080px;
    margin: 0 auto;
}

.audio-flex-start {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}

.audio-flex-between {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
}

.audio-flex-end {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
}

.audio-flex-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}
/*--------------------------------&gt; 디폴트값*/



/* 상단 영역 */
#audio-header {
    position: fixed;
    width: 100%;
    height: 61px;
    background-color: #ffffff;
    border-bottom: solid 1px #efeff4;

    left: 0;
    top: 0;

    z-index: 99999;

    font-family: Roboto,NotosansKR,-apple-system,BlinkMacSystemFont,&quot;Apple SD Gothic Neo&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Malgun Gothic&quot;,&quot;ë§‘ì€ ê³ ë”•&quot;,Dotum,&quot;ë‹ì›€&quot;,sans-serif;;
}

#audio-header .audio-nav-left {
    width: 660px;
}

#audio-header .audio-nav-left .audio-logo {
    font-size: 25px;
}

#audio-header .audio-nav-left .audio-logo a {

}

#audio-header .audio-nav-left ul {
    padding-top: 6px;
}

#audio-header .audio-nav-left li {

}

#audio-header .audio-nav-left li a {
    display: block;
    font-size: 17px;
    padding: 12px 13px 17px 12px;
}

#audio-header .audio-nav-left li a.active {
    font-weight: 700;
}

#audio-header .audio-nav-left li a span {
    position: relative;
    display: inline-block;
    height: 21px;
}

#audio-header .audio-nav-left li a.active span:after {
    display: block;
    position: absolute;   
    content: &quot;&quot;;
    background-color: #222222;
    border-bottom: solid 3px #222222;
    border-radius: 1.5px;

    z-index: 1;

    left: -4.5px;
    right: -5.5px;
    bottom: -22px;
}

#audio-header .audio-nav-left li a span:hover {
    font-weight: 700;
}

#audio-header .audio-nav-right {
    width: 330px;
} 

#audio-header .audio-nav-right .search-wrap {
    width: 180px;
    height: 40px;
    border: solid 2px rgba(0,86,201,.2);
    border-radius: 4px;
    background-color: #ffffff;
}

#audio-header .audio-nav-right .search-wrap .icon-search {
    display: inline-block;
    width: 32px;
    height: 100%;
    background-image: url(../img/search.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#audio-header .audio-nav-right .search-wrap input {
    width: calc(100% - 32px);
    height: 100%;

    padding: 8px 2px;
    font-size: 15px;

    outline: none;
    border: none;
    caret-color: #22c463;
}


#audio-header .audio-nav-right .profile-wrap {

}

#audio-header .audio-nav-right .profile-wrap .profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

#audio-header .audio-nav-right .profile-wrap .btn-login {
    font-size: 15px;
    padding-left: 8px;
    vertical-align: middle;
}


/* 메인 영역 */
#audio-main {
    width: 100%;
    background-color: #f6f8fa;

    padding-top: 61px;

    font-family: #;
}

#audio-main .audio-container {
    /*overflow: hidden;*/
    align-items: flex-start;
}

/* 섹션별 공통 디자인 */
.audio-section {
    padding: 32px 0;
}

.audio-section .audio-header {

}

.audio-section .audio-header h2 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.audio-section .audio-body {
    position: relative;
    padding-top: 19px;
}

.audio-section .audio-body .btn-right {
    display: none;
    position: absolute;

    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;

    right: 0;
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 55% 50%;

    box-shadow: 3px 3px 15px -7px rgb(0 0 0 / 72%);
    -webkit-box-shadow: 3px 3px 15px -7px rgb(0 0 0 / 72%);
    -moz-box-shadow: 3px 3px 15px -7px rgba(0,0,0,0.72);
    cursor: pointer;

    right: -17px;
}

.audio-section .audio-body .btn-left {
    display: none;
    left: -17px;
    background-image: url(../img/left-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 43%;
}

.audio-body:hover .btn {
    display: initial;
}


/* 메인 왼쪽 */
/* 오늘의 오디오 클립 */
.audio-main-left {
    float: left;
    width: 660px;
}

#audio-today .audio-slide .audio-slide-wrap {
    width: 100%;
}

#audio-today .audio-slide {
    align-items: flex-start;
}

#audio-today .audio-slide img {
    width: 380px;
    height: 198px;

    margin-right: 20px;
    border-radius: 8px;
}

#audio-today .audio-slide .txt-wrap {
    width: 240px;
}

#audio-today .audio-slide .txt-wrap h3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp:  2;
    -webkit-box-orient: vertical;
    max-height: 52px;

    padding-top: 2px;

    font-size: 18px;
    font-weight: 500;

}

#audio-today .audio-slide .txt-wrap p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    margin-top: 12px;
    font-size: 12px;
    color: #666;
}

#audio-today .audio-slide-wrap {
    position: relative;
}

#audio-today .audio-slide-wrap .btn {
    position: absolute;

    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;

    box-shadow: 3px 3px 15px -7px rgba(0,0,0,0.72);
    -webkit-box-shadow: 3px 3px 15px -7px rgba(0,0,0,0.72);
    -moz-box-shadow: 3px 3px 15px -7px rgba(0,0,0,0.72);

    top: 80px;

    cursor: pointer;
}

#audio-today .audio-slide-wrap .btn-right {
    right: 0;
    background-image: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 55% 50%;
}


/* 오디오클립 추천 오리지널 */
#audio-original {

}

#audio-original .audio-body {

}

#audio-original .audio-body ul {
    align-items: flex-start;
}

#audio-original .audio-body ul li {
    width: 120px;
}

#audio-original .audio-body li a {

}

#audio-original .audio-body li img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
}

#audio-original .audio-body h3 {
    margin-top: 10px;
    font-size: 13px;

    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36px;
}

#audio-original .audio-body .author {
    margin-top: 6px;

    font-size: 12px;
    color: #959595;
}

#audio-original .audio-body .btn-right {
    top: 60px;
}



/* 나를 위한 플레이리스트 */
#audio-playlist {

}

#audio-playlist .audio-header {
    position: relative;
}

#audio-playlist .audio-header h2 {

}

#audio-playlist .audio-header p {
    margin-top: 8px;

    font-size: 13px;
    font-weight: 400;
    color: #888;
}

#audio-playlist .audio-header .link-total {
    display: block;
    position: absolute;

    padding: 10px 18px 8px;
    background-color: #ffffff;

    font-size: 13px;
    color: #157efb;
    font-weight: 600;
    border: solid 1px rgba(0, 0, 0, .1);
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgb(80 85 91 / 7%);

    right: 0;
    top: 6px;
}

#audio-playlist .audio-body {

}

#audio-playlist .audio-body ul {
    align-items: flex-start;
}

#audio-playlist .audio-body li {
    width: 152px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

#audio-playlist .audio-body li .image-wrap {
    position: relative;
    width: 150px;
    height: 150px;
}


#audio-playlist .audio-body .image-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 4px 4px 0 0;
}

#audio-playlist .audio-body .image-wrap .icon-like {
    position: absolute;
    width: 20px;
    height: 17px;
    background-image: url(../img/heart.png);
    background-size: 17px 17px;
    background-repeat: no-repeat;

    top: 5px;
    right: 5px;
}

#audio-playlist .audio-body .image-wrap .icon-play {
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(../img/play.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 55% 50%;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50%;

    box-shadow: 2px 2px 7px -2px rgba(0,0,0,0.5);
    -webkit-box-shadow: 2px 2px 7px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 2px 7px -2px rgba(0,0,0,0.5);

    bottom: -16px;
    right: 10px;
}

#audio-playlist .audio-body li h3 {
    padding: 17px 11px;
    font-size: 13px;
    background-color: #ffffff;
    border-radius: 0 0 4px 4px;
}

#audio-playlist .audio-body .btn-right {
    top: 90px;
}


/* 라이브 ON */
#audio-live {

}

#audio-live .audio-body {

}

#audio-live .audio-body ul {
    align-items: flex-start;
}

#audio-live .audio-body li {
    width: 120px;
}

#audio-live .audio-body li .image-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    border: solid 2px #E1E3E4;
    border-radius: 50%;
}

#audio-live .audio-body li.active .image-wrap {
    border: solid 2px #ff0031;
}

#audio-live .audio-body li .image-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    border: solid 2px #f6f8fa;
    border-radius: 50%
}

#audio-live .audio-body li .image-wrap .live-state {
    position: absolute;
    padding: 2px;
    border: solid 1px #ffffff;
    background-color: #ffffff;
    border-radius: 3px;

    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

#audio-live .audio-body li .image-wrap .live-state .live {
    display: inline-block;
    padding: 2px 4px;
    color: #FF0031;
    border: solid 1.5px #FF0031;
    background-color: #ffffff;
    border-radius: 3px;

    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
}

#audio-live .audio-body li.active .image-wrap .live-state .live {
    background-color: #FF0031;
    color: #ffffff;
}

#audio-live .audio-body li h3 {
    margin-top: 16px;
    font-size: 13px;
}

#audio-live .audio-body li .author {
    font-size: 6px;
    font-size: 12px;
    color: #959595;
}

#audio-live .audio-body .btn-right {
    top: 60px
}




/* 셀럽들의 목소리로 듣는 베스트셀러 */
#audio-book {

}

#audio-book .audio-body {

}

#audio-book .audio-body ul {
    align-items: flex-start;
}

#audio-book .audio-body ul li {
    width: 120px;
}

#audio-book .audio-body .image-wrap {
    position: relative;
    width: 100%;
}

#audio-book .audio-body .image-wrap img  {
/*    position: absolute;*/
    width: 100%;
    border-radius: 2px;
}

#audio-book .audio-body .image-wrap .status {
    position: absolute;    
    padding: 2px 5px;
    background-color: rgba(17, 17, 17, .75);

    font-size: 11px;
    color: #ffffff;

    top: 5px;
    left: 5px;
}

#audio-book .audio-body .image-wrap .time {
    position: absolute;

    padding: 2px 5px;
    background-color: rgba(17, 17, 17, .75);

    font-size: 11px;
    color: #ffffff;

    right: 5px;
    bottom: 5px;
}

#audio-book .audio-body li h3 {
    font-size: 13px;
    margin-top: 11px;

    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36px;
}

#audio-book .audio-body .author-1 {
    display: block;
    margin-top: 4px;

    font-size: 12px;
    color: #959595;
}

#audio-book .audio-body .author-2 {
    display: block;

    font-size: 12px;
    color: #959595;
}

#audio-book .audio-body .price {
    display: block;
    margin-top: 4px;

    font-size: 12px;
    font-weight: 500;
}

#audio-book .audio-body .btn-right {
    top: 85px;
}

/* 새로 나온 채널 */
#audio-channel .audio-body ul {
    align-items: flex-start;
}

#audio-channel .audio-body ul li {
    width: 120px;
}

#audio-channel .audio-body li a {

}

#audio-channel .audio-body li img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
}

#audio-channel .audio-body h3 {
    margin-top: 10px;
    font-size: 13px;

    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36px;
}

#audio-channel .audio-body .author {
    margin-top: 6px;

    font-size: 12px;
    color: #959595;
}

#audio-channel .audio-body .btn-right {
    top: 60px;
}
</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li><p>선택자들의 상세한 태그의 기능들</p>
</li>
<li><p>각종 padding 값의 미세한 조정</p>
</li>
<li><p>디자인이 같은듯 달라서 확인하는데 이게 정확하게 무엇을 뜻하는지 모를 때가 많아서 고민이 됨</p>
</li>
<li><p>영상 볼륨 너무 작아서 정말 답답함</p>
</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>상세 태그 기능을 다시 알아 봄</p>
</li>
<li><p>미세 조정값은 컴퓨터 환경에 따라 약간씩 달라질 수도 있고 되도록 같은 값이면 같은 화면으로 보임</p>
</li>
<li><p>볼륨은 해결 방법이 없는데 진짜 소리를 100 으로 해도 잘 안들림</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>코드가 길어지면서 링크와 링크로 연결된 홈페이지 사이트를 만든다는게 쉬운일이 아니구나라는 것을 다시 깨달음. 그리고 CSS 코드를 따로 만들었지만, 이렇게 까지 긴 줄로 작성되는 거라면 파일을 따로 만들어서 작업을 해야겠다고 생각함. 혹은 HTML에다 STYLE 태그를 사용해서 그 안에 직접 적어넣는 방식으로 한 번 진행해보고 싶다는 생각도 함. 생각보다 다양한 방식이 적용되고 사용되는데 어떤 것이 최적일지 고민됨.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 35]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-35</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-35</guid>
            <pubDate>Fri, 13 Aug 2021 08:05:18 GMT</pubDate>
            <description><![CDATA[<h1 id="배운내용">배운내용</h1>
<p>HTML</p>
<pre><code>
&lt;div class=&quot;right&quot;&gt;

    &lt;div id=&quot;esport-news-view&quot;&gt;
      &lt;h2&gt;많이 본 뉴스&lt;/h2&gt;
      &lt;ol&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                &lt;div class=&quot;image-wrap&quot;&gt;
                &lt;img src=&quot;https://via.placeholder.com/84x48&quot; alt=&quot;news image&quot;&gt;
                &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                &lt;/div&gt;
                &lt;h3&gt;Lorem ipsum dolor sit amet consectetur, adipisicing elit. Rem repudiandae laudantium aperiam atque ducimus incidunt officiis dignissimos laboriosam sunt voluptatum id consequuntur, inventore commodi iste praesentium temporibus itaque nobis dolor.&lt;/h3&gt;
            &lt;/a&gt;
        &lt;/li&gt;
      &lt;/ol&gt;
    &lt;/div&gt;

    &lt;div id=&quot;esport-schedule&quot;&gt;
        &lt;h2&gt;e스포츠 경기 일정/결과&lt;/h2&gt;
        &lt;div class=&quot;schedule-wrap&quot;&gt;
            &lt;div class=&quot;schedule-header esport-flex-between&quot;&gt;
            &lt;button class=&quot;arrow arrow-left&quot;&gt;&lt;/button&gt;
            &lt;span&gt;06.05 토&lt;/span&gt;
            &lt;button class=&quot;arrow arrow-right&quot;&gt;&lt;/button&gt;
            &lt;/div&gt;
            &lt;div class=&quot;schedule-body&quot;&gt;
                &lt;ul&gt;
                    &lt;li&gt;
                        &lt;h3&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h3&gt;
                        &lt;div class=&quot;status-wrap esport-flex-center&quot;&gt;
                            &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                            &lt;span class=&quot;time&quot;&gt;10:00&lt;/span&gt;
                        &lt;/div&gt;
                        &lt;/li&gt;
                    &lt;li&gt;
                        &lt;h3&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h3&gt;
                        &lt;div class=&quot;status-wrap esport-flex-center&quot;&gt;
                            &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                            &lt;span class=&quot;time&quot;&gt;10:00&lt;/span&gt;
                        &lt;/div&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
</code></pre><p>CSS</p>
<pre><code>#esport-main .right {
    float: right;
    width: 357px;
    height: 2000px;
}

#esport-news-view {
    padding: 20px;
    border: solid 1px gray;
    border-radius: 10px;

    margin-bottom: 30px;
}

#esport-news-view h2 {
    font-size: 18px;
}

#esport-news-view ol {
    margin-top: 20px;
}

#esport-news-view li {
    margin-bottom: 8px;
}

#esport-news-view li:last-child {
    margin-bottom: 0;
}

#esport-news-view li a {
}

#esport-news-view .image-wrap {
    overflow: hidden;
    position: relative;
    width: 84px;
    height: 48px;
    border: solid 1px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

#esport-news-view .image-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#esport-news-view .image-wrap .rank {
    position: absolute;
    background-color: #4e41db;
    border-bottom-right-radius: 4px;

    padding: 4px 10px;

    top: 0;
    left: 0;

    font-size: 13px;
    color: #fff;
    font-weight: 800;
}

#esport-news-view li h3 {
    display: -webkit-box;
    overflow: hidden;

    width: 218px;
    max-height: 38px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;

    font-size: 14px;
    line-height: 19px;
}

#esport-schedule {

}

#esport-schedule h2 {
    font-size: 18px;
}

#esport-schedule .schedule-wrap {
    margin-top: 15px;
    border: solid 1px gray;
    border-radius: 10px;
}

#esport-schedule .schedule-wrap .schedule-header {
    padding: 10px 15px;
    border-bottom: solid 1px gray;
}

#esport-schedule .schedule-wrap .schedule-header .arrow {
    width: 20px;
    height: 20px;
}

#esport-schedule .schedule-wrap .schedule-header .arrow.arrow-left {
    background-color: yellow;
}

#esport-schedule .schedule-wrap .schedule-header .arrow.arrow-right {
    background-color: greenyellow;
}

#esport-schedule .schedule-wrap .schedule-header span {
    position: relative;

    font-size: 18px;
    font-weight: 800;

    top: 3px;
}

#esport-schedule .schedule-body {
    padding: 17px 0;
}

#esport-schedule .schedule-body li {
}

#esport-schedule .schedule-body li:first-child::after {
    content: &#39;&#39;;
    display: block;
    width: calc(100%-40px);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);

    margin: 17px auto;
}

#esport-schedule .schedule-body li h3 {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

#esport-schedule .schedule-body li .status-wrap {
}

#esport-schedule .schedule-body li .status-wrap:hover {
    background-color: yellow;
    cursor: pointer;
}

#esport-schedule .schedule-body li .status-wrap .status {
    background-color: rgba(255, 0, 0, 0.1);
    color: red;
    font-size: 11px;
    font-weight: 500;
    border-radius: 3px;

    margin-right: 4.5px;

    padding: 2px 4px;
}

#esport-schedule .schedule-body li .status-wrap .time {
    position: relative;

    top: 1px;
    font-size: 15px;
    font-weight: 700;
}

/*오디오*/
.audio-container {
    width: 1080px;
    margin: 0 auto;
}

.audio-flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.audio-flex-start {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.audio-flex-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.audio-flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#audio-header {
    position: fixed;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #efeff4;

    left: 0;
    top: 0;

    z-index: 99999;
}

#audio-header .audio-nav-left {
    width: 660px;
}

#audio-header .audio-nav-left .audio-logo {
    font-size: 25px;
}

#audio-header .audio-nav-left .audio-logo a {
}

#audio-header .audio-nav-left ul {
    padding-top: 10px;
}

#audio-header .audio-nav-left li {
}

#audio-header .audio-nav-left li a {
    display: block;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 13px 17px 12px;
}

#audio-header .audio-nav-left li a.active {
    font-weight: 700;
}

#audio-header .audio-nav-left li a span {
    position: relative;
    display: inline-block;
    height: 21px;
}

#audio-header .audio-nav-left li a.active span::after {
    display: block;
    position: absolute;
    content: &#39;&#39;;
    border-bottom: solid 3px #222;
    border-radius: 1.5px;

    z-index: 1;

    left: -4.5px;
    right: -5.5px;
    bottom: -17px;
}

#audio-header .audio-nav-right {
    width: 330px;
}

#audio-header .audio-nav-right .search-wrap {
    width: 180px;
    height: 40px;
    background-color: white;
    border: solid 2px rgba(0, 86, 201, 0.2);
    border-radius: 4px;
}

#audio-header .audio-nav-right .search-wrap .icon-search {
    width: 40px;
    height: 100%;
    background-color: yellow;
}

#audio-header .audio-nav-right .search-wrap input {
    width: calc(100% - 40px);
    height: 100%;

    padding: 8px 15px;
    font-size: 14px;

    outline: none;
    border: none;
}

#audio-header .audio-nav-right .search-wrap input:focus {
    outline: none;
}

#audio-header .audio-nav-right .profile-wrap {
}

#audio-header .audio-nav-right .profile-wrap .profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

#audio-header .audio-nav-right .profile-wrap .btn-login {
    font-size: 15px;
    padding-left: 8px;
}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li><p>position을 활용한 공간 만들기</p>
</li>
<li><p>padding 값을 활용한 것들</p>
</li>
<li><p>강의 볼륨</p>
</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li><p>position 과 padding 태그에 대해 다시 복습</p>
</li>
<li><p>앞의 강의 복습</p>
</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>카피캣 수업을 하면서 손으로 익혔던 것을 되집어보면서 동작하는 방법에 대해 좀더 이해할 수 있었음 익숙한 페이지들 이지만 같으면서 동시에 다른 부분을 세팅해나가는 것이 신기함. 선택자와 CSS의 꾸밈을 통해 같으면서도 충분히 다른 느낌을 줄 수 있어 신기함. 영상 강의 볼륨은 정말 너무 힘듦. 아직도 부족하므로 계속 복습해야 한다고 생각함.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[dg_ai_school] 웹프로그래밍 34]]></title>
            <link>https://velog.io/@chaehwan_lee/dgaischool-web-34</link>
            <guid>https://velog.io/@chaehwan_lee/dgaischool-web-34</guid>
            <pubDate>Thu, 12 Aug 2021 09:29:07 GMT</pubDate>
            <description><![CDATA[<h1 id="배운내용">배운내용</h1>
<p>HTML</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;네이버&lt;/title&gt;

    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;

&lt;/head&gt;
&lt;body id=&quot;game-body&quot;&gt;

    &lt;header id=&quot;esport-header&quot;&gt;
        &lt;nav id=&quot;esport-nav&quot;&gt;
            &lt;div class=&quot;esport-container&quot;&gt;

                &lt;div class=&quot;nav-wrap esport-flex-between&quot;&gt;

                    &lt;div class=&quot;left esport-flex-start&quot;&gt;
                        &lt;h1&gt;&lt;a href=&quot;#&quot;&gt;e스포츠&lt;/a&gt;&lt;/h1&gt;
                        &lt;ul class=&quot;esport-flex-start&quot;&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;GAME&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;PC게임&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;center&quot;&gt;
                        &lt;ul class=&quot;esport-flex-center&quot;&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;active&quot;&gt;홈&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;뉴스&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;영상&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;일정&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;순위&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;

                    &lt;div class=&quot;right esport-flex-end&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;로그인&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;메뉴&lt;/a&gt;
                    &lt;/div&gt;

                &lt;/div&gt;

            &lt;/div&gt;
        &lt;/nav&gt;
    &lt;/header&gt;

    &lt;main id=&quot;esport-main&quot; role=&quot;main&quot;&gt;

        &lt;div id=&quot;esport-main-top&quot;&gt;
            &lt;div class=&quot;esport-container&quot;&gt;

                &lt;div class=&quot;timeline-wrap&quot;&gt;

                    &lt;ul class=&quot;esport-flex-start&quot;&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot;&gt;
                                &lt;span class=&quot;date&quot;&gt;오늘 (06.05)&lt;/span&gt;
                                &lt;h2&gt;2021 LCK AS 챔피언십 풀리그 3일차&lt;/h2&gt;

                                &lt;div class=&quot;status-wrap esport-flex-between&quot;&gt;
                                    &lt;span class=&quot;live&quot;&gt;LIVE&lt;/span&gt;
                                    &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;

                    &lt;/ul&gt;
                &lt;/div&gt;

                &lt;div class=&quot;live-wrap&quot;&gt;
                    &lt;h2&gt;라이브중인 경기 &lt;span class=&quot;count&quot;&gt;2&lt;/span&gt;&lt;/h2&gt;
                    &lt;ul class=&quot;esport-flex-between&quot;&gt;
                        &lt;li&gt;
                            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/442x250&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;span&gt;진행중&lt;/span&gt;
                                    &lt;h3&gt;2021 PMPS S1 WEEKLY FINAL DAY 3&lt;/h3&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;

                        &lt;li&gt;
                            &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                &lt;img src=&quot;https://via.placeholder.com/442x250&quot;&gt;
                                &lt;div class=&quot;txt-wrap&quot;&gt;
                                    &lt;span&gt;진행중&lt;/span&gt;
                                    &lt;h3&gt;2021 PMPS S1 WEEKLY FINAL DAY 3&lt;/h3&gt;
                                &lt;/div&gt;
                            &lt;/a&gt;
                        &lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;        
            &lt;/div&gt;                
        &lt;/div&gt;

        &lt;div class=&quot;esport-container&quot;&gt;

            &lt;div class=&quot;content-wrap&quot;&gt;
                &lt;div class=&quot;left&quot;&gt;

                    &lt;div id=&quot;esport-main-article&quot;&gt;

                    &lt;/div&gt;

                        &lt;div class=&quot;article one full&quot;&gt;
                            &lt;img src=&quot;https://via.placeholder.com/150&quot;&gt;
                            &lt;div class=&quot;txt-wrap&quot;&gt;
                                &lt;h3&gt;Title&lt;/h3&gt;
                                &lt;p&gt;동해물과 백두산이 마르고 닳도록 동해물과 백두산이 마르고 닳도록 동해물과 백두산이 마르고 닳도록 동해물과 백두산이 마르고 닳도록 &lt;/p&gt;
                                &lt;span class=&quot;source&quot;&gt;포모스&lt;/span&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;article&quot;&gt;
                            &lt;img src=&quot;https://via.placeholder.com/150&quot;&gt;
                            &lt;div class=&quot;txt-wrap&quot;&gt;
                                &lt;h3&gt;Title&lt;/h3&gt;
                                &lt;span class=&quot;source&quot;&gt;포모스&lt;/span&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;article&quot;&gt;
                            &lt;img src=&quot;https://via.placeholder.com/150&quot;&gt;
                            &lt;div class=&quot;txt-wrap&quot;&gt;
                                &lt;h3&gt;Title&lt;/h3&gt;
                                &lt;span class=&quot;source&quot;&gt;포모스&lt;/span&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;

                        &lt;div class=&quot;article two half&quot;&gt;

                        &lt;/div&gt;

                        &lt;div class=&quot;article three half&quot;&gt;

                        &lt;/div&gt;


                &lt;div class=&quot;right&quot;&gt;


                    &lt;div id=&quot;esports_news_view&quot;&gt;
                        &lt;h2&gt;많이 본 뉴스&lt;/h2&gt;
                        &lt;ol&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                            &lt;li&gt;
                                &lt;a href=&quot;#&quot; class=&quot;esport-flex-between&quot;&gt;
                                    &lt;div class=&quot;image_wrap&quot;&gt;
                                        &lt;img src=&quot;https://via.placeholder.com/84x48&quot;&gt;
                                        &lt;span class=&quot;rank&quot;&gt;1&lt;/span&gt;
                                    &lt;/div&gt;

                                    &lt;h3&gt;동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 동해물과 백두산이 &lt;/h3&gt;
                                &lt;/a&gt;
                            &lt;/li&gt;
                        &lt;/ol&gt;
                    &lt;/div&gt;

                    &lt;div id=&quot;esports_schedule&quot;&gt;
                        &lt;h2&gt;e스포츠 경기 일정/결과&lt;/h2&gt;

                        &lt;div class=&quot;schedule_wrap&quot;&gt;

                            &lt;div class=&quot;schedule_header esport-flex-between&quot;&gt;
                                &lt;button type=&quot;button&quot; class=&quot;arrow arrow_left&quot;&gt;&lt;/button&gt;
                                &lt;span&gt;08.12 목&lt;/span&gt;
                                &lt;button type=&quot;button&quot; class=&quot;arrow arrow_right&quot;&gt;&lt;/button&gt;        
                            &lt;/div&gt;


                            &lt;div class=&quot;schedule_body&quot;&gt;
                                &lt;ul&gt;
                                    &lt;li&gt;
                                        &lt;h3&gt;2021 LCK 챔피언십 풀리그 3일차&lt;/h3&gt;
                                        &lt;div class=&quot;status_wrap esport-flex-center&quot;&gt;
                                            &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                            &lt;span class=&quot;time&quot;&gt;10:00&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/li&gt;
                                    &lt;li&gt;
                                        &lt;h3&gt;2021 LCK 챔피언십 풀리그 3일차&lt;/h3&gt;
                                        &lt;div class=&quot;status_wrap esport-flex-center&quot;&gt;
                                            &lt;span class=&quot;status&quot;&gt;진행중&lt;/span&gt;
                                            &lt;span class=&quot;time&quot;&gt;10:00&lt;/span&gt;
                                        &lt;/div&gt;
                                    &lt;/li&gt;
                                &lt;/ul&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;


                &lt;/div&gt;

    &lt;/main&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre><p>CSS</p>
<pre><code>#esports_news_view {
    padding: 20px;
    border: solid 1px grey;
    border-radius: 10px;

    margin-bottom: 30px;
}

#esports_news_view h2 {
    font-size: 18px;
}

#esports_news_view ol {
    margin-top: 20px;
}

#esports_news_view li {
    margin-bottom: 8px;
}
#esports_news_view li:last-child {
    margin-bottom: 0;
}


#esports_news_view li a {
}

#esports_news_view li a .image_wrap {
    position: relative;
    overflow: hidden;
    width: 84px;
    height: 48px;
    border: solid 1px rgba(0, 0, 0, .04);
    border-radius: 4px;
}

#esports_news_view .image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#esports_news_view .image_wrap .rank {
    position: absolute;

    padding: 4px 10px;
    border-bottom-right-radius: 4px;

    top: 0;
    left: 0;

    background-color: #4e41db;
    font-size: 13px;
    color: #fff;
    font-weight: 800;

}

#esports_news_view h3 {
    display: -webkit-box;

    overflow: hidden;

    width: 218px;
    max-height: 38px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;

    font-size: 14px;
    line-height: 19px;
}


#esports_schedule {}

#esports_schedule h2 {
    font-size: 18px;
}

#esports_schedule .schedule_wrap {
    margin-top: 15px;
    border: solid 1px grey;
    border-radius: 4px;
}

#esports_schedule .schedule_wrap .schedule_header{
    padding: 14px 15px;
    border-bottom: solid 1px grey;
}

#esports_schedule .schedule_wrap .schedule_header .arrow{
    width: 20px;
    height: 20px;
}

#esports_schedule .schedule_wrap .schedule_header .arrow.arrow_left{
    background-color: yellow;
}

#esports_schedule .schedule_wrap .schedule_header .arrow.arrow_right {
    background-color: greenyellow;
}

#esports_schedule .schedule_wrap .schedule_header span{
    position: relative;
    font-size: 18px;
    font-weight: 800;

    top: 3px;
}

#esports_schedule .schedule_wrap .schedule_body {
    padding: 17px 0;
}

#esports_schedule .schedule_wrap .schedule_body ul {
}

#esports_schedule .schedule_wrap .schedule_body ul li {
    /*padding: 17px 0;*/
}

#esports_schedule .schedule_wrap .schedule_body ul li:first-child:after{
    display: block;

    content: &quot;&quot;;
    width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(0, 0, 0, .05);

    margin: 17px auto;
}

#esports_schedule .schedule_wrap .schedule_body li h3 {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

#esports_schedule .schedule_wrap .schedule_body li .status_wrap{

}

#esports_schedule .schedule_wrap .schedule_body li .status_wrap:hover{
    background-color: yellow;
    cursor: pointer;
}

#esports_schedule .schedule_wrap .schedule_body .status_wrap .status {
    background-color: rgba(225, 0, 0, .1);
    color: red;
    font-weight: 500;
    font-size: 11px;
    border-radius: 3px;

    margin-right: 4.5px;
    padding: 2px 4px;
}

#esports_schedule .schedule_wrap .schedule_body .status_wrap .time {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    top: 1px;

}</code></pre><h1 id="어려운점">어려운점</h1>
<ul>
<li>padding 값과 span 과 같은 태그와 class 상속 개념에 대해서 여전히 생각이 잘 안나서 문제</li>
</ul>
<h1 id="해결방법">해결방법</h1>
<ul>
<li>복습과 함께 다시 해봄 그리고 HTML을 따로 분해해서 보려고 함</li>
</ul>
<h1 id="학습소감">학습소감</h1>
<ul>
<li>큰 구조에 대해서는 이해가 되는데 여전히 디테일한 부분과 디자인과의 연계에 대해서 이해가 잘 안됨 날을 잡고 한 번 더 봐야할 것 같으나, 시간이 너무 오래 걸려서 문제. 학습 방법에 대해 다시 한 번 생각해봐야 할 것 같음.</li>
</ul>
]]></description>
        </item>
    </channel>
</rss>