/ / 사이트 생성을위한 HTML 명령

사이트 작성을위한 HTML 명령

약어 HTML은 HyperText Markup Language를 나타냅니다. HTML은 프로그래밍 언어가 아니라 사이트 마크 업 언어입니다.

모든 브라우저는이 마크 업을 사용자에게 친숙한보기로 변환 할 수 있습니다.

이 언어는 특별한 명령을 사용합니다.태그라고합니다. 각 태그에는 고유 한 기능이 있습니다. 엄청난 수의 태그가 있습니다. 이상적으로는 모든 것을 배워야합니다. 그러나 초보 개발자에게는 기본 지식으로 충분합니다.

기본 HTML 명령

HTML 명령 목록은 매우 깁니다. 그러나 그다지 중요한 것은 없습니다. 코드 작성을 시작하려면 편집기가 필요합니다. 메모장을 사용할 수 있습니다. Notepad ++ 사용을 권장합니다. 이렇게 생겼어요.

사이트 작성을위한 html 명령

장점은 특수 편집자가태그는 카테고리에 따라 특정 색상으로 강조 표시됩니다. 메모장이나 다른 프로그램에서 HTML 사이트를 만드는 명령은 동일합니다. 사용되는 언어는 모든 곳에서 동일합니다. 개발 환경은 도구 일뿐입니다.

HTML에는 닫힘 및 닫히지 않음태그. 또한이 언어에는 중첩 개념이 있습니다. 코드의 모든 개체는 요소입니다. 요소에는 여는 태그, 닫는 태그 및 내용이 있습니다. 또한 태그에는 자체 값이있는 자체 추가 속성이 있습니다.

그림은 두 개의 태그 <html> 및 </ html>을 보여줍니다. 열기와 닫기의 철자는 동일하지만 "/"만 다릅니다. 태그가 닫히지 않으면 핸들러는 다른 모든 것을이 특정 요소의 연속으로 간주합니다. 매우 중요합니다. 특히 링크에서. 우리는 그것들을 조금 더 고려할 것입니다.

<html> 태그가 필요합니다. 항상 작성해야합니다. 그러나 닫을 필요는 없습니다. 표준에 따르면 필요하지만 닫지 않으면 여전히 작동합니다.

다른 주요 태그가 있습니다 : 머리와 몸.

메모장에서 html 사이트를 만드는 명령

이러한 HTML 명령은 페이지의 골격입니다. 필요합니다. 그들은 또한 닫힙니다.

태그의 이름이 의미와 일치합니다. 머리-머리. 이 섹션에는 보이지 않는 서비스 및 중요한 정보가 포함되어 있습니다. 본문 섹션은 문서의 본문입니다. 다음은 사용자에게 표시되는 콘텐츠입니다. 나중에 혼란을 피하기 위해 즉시 태그를 닫으십시오.

html 명령

서비스 섹션은 다음을 나타냅니다.

  • 문서 제목;
  • 스타일 파일;
  • 스크립트 파일;
  • 메타 태그;
  • 검색 엔진에 대한 방향;
  • 로봇에 대한 지침;
  • 프로그래머가 사용할 수 있지만 사용자는 사용할 수없는 기타 정보.

스타일 시트는 다음과 같이 연결됩니다.

<link rel = "stylesheet"href = "style.css"type = "text / css">

스크립트 파일은 다음과 같습니다.

<스크립트 유형 = "텍스트 / 자바 스크립트"src = "main.js"> </ script>

텍스트에는 제목이 있어야합니다. 다음과 같이 지정합니다.

페이지 제목 </ title></em></p><p>이 텍스트는 브라우저 탭의 제목에 나타납니다. 또한이 제목은 검색 엔진 결과의 결과로 표시됩니다.</p><h2>텍스트 장식용 태그</h2><p>단락 태그에 텍스트를 배치합니다. 이를 <p> 텍스트 </ p>라고합니다. 텍스트에 <span> String </ span>을 사용할 수도 있습니다.</p><p>"단어"에서와 같이 텍스트를 정렬 할 수 있습니다.</p><ul><li><i> 기울임 꼴 </ i></li><li><strong> 굵은 텍스트 </ strong></li><li><s> 취소 선 텍스트 </ s></li><li><u> 밑줄이 그어진 텍스트 </ u></li></ul><p>텍스트에 스타일을 지정할 수 있습니다. 다른 요소를 검토 한 후 마지막에 다룰 것입니다.</p><h2>헤더 사용</h2><p>다른 중요한 HTML 명령도 있습니다. 사이트를 만들려면 헤더를 사용해야합니다. <h1> First Level Heading </ h1> 태그를 사용하여 표시됩니다. 1에서 6까지의 수준이 있습니다. 제목이 중첩되어야한다는 것을 이해하는 것이 중요합니다.</p><p>그림의 예.</p><p><center><img itemprop="image" alt="기본 html 명령" class="if" height="240" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_4.jpg" width="600" /></center></p><p>사용하는 것이 좋습니다단 하나의 h1 제목. 그러나 <title> 태그와 일치해야합니다. 물론 200 개의 h1 헤더를 지정할 수 있지만 검색 엔진의 승인을받습니다.</p><h2>이미지 사용</h2><p>이미지는 웹 페이지의 필수적인 부분입니다. 예는 사진을 삽입하는 방법을 보여줍니다.</p><p><center><img itemprop="image" alt="사이트에 대한 html 명령" class="if" height="200" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_5.jpg" width="487" /></center></p><p>보시다시피 예제는 호출되는 내용과 방법을 자세히 보여줍니다.</p><h2>링크 사용</h2><p>HTML 명령을 배우는 경우 태그 링크를 알아야합니다. 이것은 World Wide Web을 구성하는 가장 중요한 요소 중 하나입니다.</p><p>링크는 <a> 태그로 표시됩니다. 그러나 닫혀 있어야합니다. 또한이 요소에는 링크 주소를 나타내는 필수 href 속성이 있습니다.</p><p><center><img itemprop="image" alt="html 명령" class="if" height="200" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_6.jpg" width="474" /></center></p><p>위의 예에서 링크 텍스트 대신 그림이 표시된 것을 볼 수 있습니다. 즉, 텍스트와 그림을 모두 넣을 수 있습니다.</p><p>스타일 클래스 또는 일반 태그 (기울임 꼴, 굵게, 밑줄 및 취소 선)를 사용하여 링크 형식을 지정할 수도 있습니다.</p><h2>테이블 사용</h2><p>테이블도 매우 자주 사용됩니다. 처음에는 편리한 방법으로 정보를 제공하기위한 것이 었습니다. 그러나 레이아웃 디자이너는이를 사용하여 페이지의 다양한 요소를 배치했습니다.</p><p>테이블은 다음과 같이 생성됩니다.</p><p><em><table width = "100 %"border = "1"></em></p><p><em> <tr></em></p><p><em> <td> 셀 텍스트 </ td></em></p><p><em> <td> 셀 텍스트 </ td> </em></p><p><em> </ tr></em></p><p><em> <tr></em></p><p><em> <td> 셀 텍스트 </ td></em></p><p><em> <td> 셀 텍스트 </ td> </em></p><p><em> </ tr></em></p><p><em></ table></em></p><p>width 속성은 테이블의 너비를 지정합니다. 백분율 또는 픽셀 일 수 있습니다. 테두리는 테두리의 두께를 나타냅니다.</p><p>구조는 다음과 같이 표시됩니다. tr 태그는 문자열입니다. 셀별 Td 태그. 그리고 모두 함께 테이블입니다.</p><p><center><img itemprop="image" alt="html 명령 목록" class="if" height="290" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_7.jpg" width="535" /></center></p><p>테이블을 정렬 할 수 있습니다. 이를 위해 왼쪽, 가운데, 오른쪽의 세 가지 값을 사용할 수있는 align 속성이 사용됩니다. 사용 예는 다음과 같습니다.</p><p><center><img itemprop="image" alt="테이블에 대한 html 명령" class="if" height="253" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_8.jpg" width="375" /></center></p><p>이러한 HTML 명령 (너비 및 정렬)은 다른 요소에서도 작동합니다. 프레임 두께도 이미지에 표시됩니다.</p><h2>목록 사용</h2><p>HTML 명령을 사용하여 다양한 종류의 목록을 만들 수 있습니다. Word 편집기에서와 거의 동일합니다.</p><p>Html 언어에는 정렬 된 목록과 정렬되지 않은 목록 (글 머리 기호)이 있습니다. 그러한 목록의 예.</p><p><em><ul></em></p><p><em> <li> 먼저 </ li></em></p><p><em> <li> 두 번째 </ li></em></p><p><em> <li> 세 번째 </ li></em></p><p><em></ ul></em></p><p>결과는 다음과 같습니다.</p><ul><li>먼저</li><li>둘째</li><li>제삼</li></ul><table align="center" cellpadding="5" cellspacing="0" class="if" style="width: 539px; height: 215px;"><tbody><tr><td width="240"><p><strong>목록 유형</strong></p></td><td width="345"><p><strong>HTML 코드</strong></p></td></tr><tr><td width="240"><p>원의 형태로</p></td><td width="345"><p><ul 유형 = "disc"><br /> <li> ... </ li><br /> </ ul></p></td></tr><tr><td width="240"><p>원의 형태로</p></td><td width="345"><p><ul 유형 = "circle"><br /> <li> ... </ li><br /> </ ul></p></td></tr><tr><td width="240"><p>사각형 마커로</p></td><td width="345"><p><ul 유형 = "square"><br /> <li> ... </ li><br /> </ ul></p></td></tr></tbody></table><p>정렬 된 목록은 같은 방식으로 생성되지만 <ul> 대신 <ol> 태그를 사용합니다.</p><p>여기에서 목록 출력 유형을 설정할 수도 있습니다.</p><ul><li><em>"1"</em> -아라비아 숫자 1, 2, 3 ...</li><li><em>"ㅏ"</em> -대문자 A, B, C ...</li><li><em>"ㅏ"</em> -소문자 a, b, c ...</li><li><em>"나는"</em> -큰 로마 숫자 I, II, III ...</li><li><em>"나는"</em> -작은 로마 숫자 i, ii, iii ...</li></ul><p>아라비아 숫자가 표준으로 표시됩니다.</p><p>번호가 매겨진 목록이므로 목록의 시작 값을 지정하는 시작 속성이 있습니다. 예를 들어 10 일 또는 20 일부터 시작하는 목록을 표시 할 수 있습니다.</p><h2>스타일 사용</h2><p>사이트에 대한 HTML 명령은 매우 다양하지만그들은 모두 스타일을 따릅니다. 스타일은 헤드 섹션에서 파일로 지정 될 수 있습니다. <link rel = "stylesheet"href = "style.css"type = "text / css"> 또는 기성품 스타일을 즉시 작성할 수 있습니다.</p><p>이 정의 사이에스타일에는 차이가 있습니다. 스타일 파일은 사이트의 모든 페이지에서 지정할 수 있습니다. 변경하는 즉시이 업데이트는 전체 사이트에 영향을줍니다. 특정 페이지에서 스타일을 지정하는 경우 이러한 클래스의 변경 및 사용은이 파일에만 있습니다. 당신의 설정은 그것을 넘어서는 것이 아닙니다.</p><p>20 개의 HTML 페이지가 있고제목을 2 픽셀 더 크게 만들기로 결정했습니다. 스타일 시트에 모든 것이 있으면 거기에서 편집하기 만하면됩니다. 모든 것이 개별적인 경우 20 페이지 모두를 업데이트해야합니다.</p><p>다음과 같이 한 페이지에 대해서만 지정할 수 있습니다.</p><p><center><img itemprop="image" alt="스타일에 대한 html 명령" class="if" height="200" src="/images/kompyuteri/html-komandi-dlya-sozdaniya-sajtov_9.jpg" width="248" /></center></p><p>이 방법은 권장되지 않습니다.</p></div> <center><ins data-zxname="zx-adnet" data-zxadslot="ZX-TWSTNV" data-zxw="0" data-zxh="0" data-overlay="false" ><script type="text/javascript" src="https://cdn.zx-adnet.com/adx/twstnv_19091901.js"></script></ins></center> <div class="herta"> <b>좋아요 :</b> <div class="hers"> <div class="allco" style="margin-right: 0px;"> <div class="mwrating"> <div class="hertra"><a href="#" onclick="doRate('plus', '60307'); return false;" ><img src="/templates/web1/images/lich.svg"></a></div> <div class="mwrat" style="margin-top: 0px;font-size: 18px; color: #888;"><span id="ratig-layer-60307" class="ignore-select"><span class="ratingtypeplus ignore-select" >0</span></span></div> </div> </div> </div> </div> <script src="//yastatic.net/es5-shims/0.0.2/es5-shims.min.js"></script> <script src="//yastatic.net/share2/share.js"></script> <div class="ya-share2" data-services="facebook,gplus,twitter,blogger,delicious,digg,reddit,evernote,linkedin,lj,pocket,surfingbird,tumblr,viber,whatsapp,skype,telegram"></div> <div class="fullinbe"> <div class="width-c"> <div align="center"><a class="btn_showmore cenzo" href="">관련 자료</a></div> <div class="arater"></div> </div> <div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/62815-chto-takoe-verstka-sayta-tablichnaya-i-blochnaya-verstka-razlichiya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/62815-chto-takoe-verstka-sayta-tablichnaya-i-blochnaya-verstka-razlichiya.html">사이트 레이아웃이란 무엇입니까? 표</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/60934-kak-ubrat-podcherkivanie-v-ssylke-html-stranicy.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/kak-ubrat-podcherkivanie-v-ssilke-html-stranici_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/60934-kak-ubrat-podcherkivanie-v-ssylke-html-stranicy.html">링크에서 밑줄을 제거하는 방법</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/60803-chto-takoe-v-html-header.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/chto-takoe-v-html-header_2.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/60803-chto-takoe-v-html-header.html">HTML 헤더 란 무엇입니까?</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/59070-urok-po-html-obedinenie-yacheek.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/urok-po-html-obedinenie-yacheek_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/59070-urok-po-html-obedinenie-yacheek.html">HTML 수업. 세포 연합</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/58942-neskolko-sposobov-kak-vstavit-video-v-html.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/neskolko-sposobov-kak-vstavit-video-v-html_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/58942-neskolko-sposobov-kak-vstavit-video-v-html.html">삽입하는 여러 가지 방법</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/58269-dlya-chego-nuzhen-spoyler-html.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/dlya-chego-nuzhen-spojler-html_5.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/58269-dlya-chego-nuzhen-spoyler-html.html">왜 HTML 스포일러가 필요한가요?</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/57118-kak-v-html-zakommentirovat-stroku.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/kompyuteri/kak-v-html-zakommentirovat-stroku_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/57118-kak-v-html-zakommentirovat-stroku.html">HTML에서 줄을 주석 처리하는 방법은 무엇입니까?</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/56849-chto-nuzhno-znat-programmistu-chtoby-stat-professionalom.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/karera/chto-nuzhno-znat-programmistu-chtobi-stat-professionalom_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/56849-chto-nuzhno-znat-programmistu-chtoby-stat-professionalom.html">프로그래머가 알아야 할 사항</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/46681-kak-sdelat-portal-neskolkimi-sposobami.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/internet/kak-sdelat-portal-neskolkimi-sposobami_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/46681-kak-sdelat-portal-neskolkimi-sposobami.html">포털 멀티 만드는 법</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/46582-knopka-html-primenenie-izgotovlenie.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/internet/knopka-html-primenenie-izgotovlenie_4.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/46582-knopka-html-primenenie-izgotovlenie.html">HTML 버튼 : 응용 프로그램,</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/46216-html-tegi-verstka-programmirovanie-oformlenie.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/46216-html-tegi-verstka-programmirovanie-oformlenie.html">HTML 태그 : 레이아웃,</a></div> </div><div class="fullrelax"> <div class="imager-relas"><a href="https://paulturner-mitchell.com/ko/46138-uchimsya-kak-sdelat-ssylku-na-sayt.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titlesrelax"><a href="https://paulturner-mitchell.com/ko/46138-uchimsya-kak-sdelat-ssylku-na-sayt.html">사이트에 연결하는 방법 배우기</a></div> </div> </div> </div></div></div> </div> <div class="rightconter"> <ins data-zxname="zx-adnet" data-zxadslot="ZX-TWSTNV" data-zxw="0" data-zxh="0" data-overlay="false" ><script type="text/javascript" src="https://cdn.zx-adnet.com/adx/twstnv_19091901.js"></script></ins> <div class="caywort stylep tersll">인기 게시물</div> <div class="block-losf"> <div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132132-endoskopicheskie-issledovaniya-metody-osobennosti-procedury-i-otzyvy.html">내시경 검사 :</a></div></div> <a href="https://paulturner-mitchell.com/ko/132132-endoskopicheskie-issledovaniya-metody-osobennosti-procedury-i-otzyvy.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/endoskopicheskie-issledovaniya-metodi-osobennosti-proceduri-i-otzivi_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132131-pulmikort-instrukciya-po-primeneniyu-analogi-sostav-i-otzyvy.html">"Pulmicort": 지침</a></div></div> <a href="https://paulturner-mitchell.com/ko/132131-pulmikort-instrukciya-po-primeneniyu-analogi-sostav-i-otzyvy.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/pulmikort-instrukciya-po-primeneniyu-analogi-sostav-i-otzivi_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132128-nii-urologii-v-moskve-adres-otzyvy-foto.html">모스크바 비뇨기과 연구소 : 주소,</a></div></div> <a href="https://paulturner-mitchell.com/ko/132128-nii-urologii-v-moskve-adres-otzyvy-foto.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/nii-urologii-v-moskve-adres-otzivi-foto_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132126-optiks-forte-instrukciya-po-primeneniyu-opisanie-preparata-otzyvy.html">"Optix Forte": 지침</a></div></div> <a href="https://paulturner-mitchell.com/ko/132126-optiks-forte-instrukciya-po-primeneniyu-opisanie-preparata-otzyvy.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/optiks-forte-instrukciya-po-primeneniyu-opisanie-preparata-otzivi_5.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132125-preparat-enalapril-otzyvy-i-instrukciya.html">마약 "Enalapril": 리뷰</a></div></div> <a href="https://paulturner-mitchell.com/ko/132125-preparat-enalapril-otzyvy-i-instrukciya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/preparat-enalapril-otzivi-i-instrukciya_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132123-chem-polezno-moloko-dlya-detey-i-vzroslyh.html">어린이를위한 유용한 우유보다</a></div></div> <a href="https://paulturner-mitchell.com/ko/132123-chem-polezno-moloko-dlya-detey-i-vzroslyh.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/chem-polezno-moloko-dlya-detej-i-vzroslih_3.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132121-rinostop-otzyvy-rinostop-dlya-detey-cena.html">"Rinostop": 리뷰.</a></div></div> <a href="https://paulturner-mitchell.com/ko/132121-rinostop-otzyvy-rinostop-dlya-detey-cena.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/rinostop-otzivi-rinostop-dlya-detej-cena_5.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132117-ingalyacii-pri-nasmorke.html">감기에 의한 흡입</a></div></div> <a href="https://paulturner-mitchell.com/ko/132117-ingalyacii-pri-nasmorke.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div><div class="imageposter"> <div class="hover-special-min"><div class="titlelo"><a href="https://paulturner-mitchell.com/ko/132115-ponos-u-telenka-chem-lechit-lekarstvo-dlya-telyat-sovety-veterinara.html">종아리에서 설사는 치료하는 것보다?</a></div></div> <a href="https://paulturner-mitchell.com/ko/132115-ponos-u-telenka-chem-lechit-lekarstvo-dlya-telyat-sovety-veterinara.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/zdorove/ponos-u-telenka-chem-lechit-lekarstvo-dlya-telyat-soveti-veterinara_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a> </div> </div> <div class="top-popusl-bl"> <div class="caywort stylep">카테고리</div> <a href="/ko/avtomobili/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">자동차</div></a> <a href="/ko/biznes/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">사업</div></a> <a href="/ko/dom-i-semya/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">가정 및 가족</div></a> <a href="/ko/domashniy-uyut/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">고향</div></a> <a href="/ko/duhovnoe-razvitie/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">영적 개발</div></a> <a href="/ko/eda-i-napitki/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">음식과 음료</div></a> <a href="/ko/zakon/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">법</div></a> <a href="/ko/zdorove/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">건강</div></a> <a href="/ko/internet/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">인터넷</div></a> <a href="/ko/iskusstvo-i-razvlecheniya/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">예술 및 엔터테인먼트</div></a> <a href="/ko/karera/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">경력</div></a> <a href="/ko/kompyutery/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">컴퓨터</div></a> <a href="/ko/krasota/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">아름다움</div></a> <a href="/ko/marketing/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">마케팅</div></a> <a href="/ko/moda/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">패션</div></a> <a href="/ko/novosti-i-obschestvo/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">뉴스와 사회</div></a> <a href="/ko/obrazovanie/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">교육 :</div></a> <a href="/ko/otnosheniya/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">관계</div></a> <a href="/ko/publikacii-i-napisanie-statey/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">간행물 및 작문 기사</div></a> <a href="/ko/puteshestviya/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">여행 중</div></a> <a href="/ko/reklama/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">광고</div></a> <a href="/ko/samosovershenstvovanie/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">자기 완벽</div></a> <a href="/ko/sport-i-fitnes/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">스포츠 및 휘트니스</div></a> <a href="/ko/tehnologii/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">기술</div></a> <a href="/ko/finansy/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">재정</div></a> <a href="/ko/hobbi/"><div class="right-navsic"><img src="/templates/web1/images/circ.svg" alt=""></div><div class="name-navs">취미</div></a> </div> <div class="caywort stylep tersll">영적 개발</div> <div class="block-losf"> <div class="topisx"> <div class="topis"><a href="https://paulturner-mitchell.com/ko/29543-imya-danila-znachenie-imeni-proishozhdenie-sudba-i-tayna.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/duhovnoe-razvitie/imya-danila-znachenie-imeni-proishozhdenie-sudba-i-tajna_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titletop"><a href="https://paulturner-mitchell.com/ko/29543-imya-danila-znachenie-imeni-proishozhdenie-sudba-i-tayna.html">이름은 Danil입니다. 이름의 의미, 기원, 운명 및 신비</a></div> </div><div class="topisx"> <div class="topis"><a href="https://paulturner-mitchell.com/ko/29541-hram-nechayannaya-radost-v-marinoy-rosche-istoriya-postroyki-svyatyni-bogosluzheniya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/duhovnoe-razvitie/hram-nechayannaya-radost-v-marinoj-roshe-istoriya-postrojki-svyatini-bogosluzheniya_4.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titletop"><a href="https://paulturner-mitchell.com/ko/29541-hram-nechayannaya-radost-v-marinoy-rosche-istoriya-postroyki-svyatyni-bogosluzheniya.html">마리나 그 로브 (Marina Grove)의 사원 "예기치 않은 기쁨": 건축, 신사, 예배의 역사</a></div> </div><div class="topisx"> <div class="topis"><a href="https://paulturner-mitchell.com/ko/29540-bafomet-eto-hristianskiy-demon-ili-yazycheskoe-bozhestvo.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/duhovnoe-razvitie/bafomet-eto-hristianskij-demon-ili-yazicheskoe-bozhestvo_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titletop"><a href="https://paulturner-mitchell.com/ko/29540-bafomet-eto-hristianskiy-demon-ili-yazycheskoe-bozhestvo.html">Baphomet는 기독교 악마 또는 이교도 신?</a></div> </div><div class="topisx"> <div class="topis"><a href="https://paulturner-mitchell.com/ko/29539-listaem-sonnik-belaya-zmeya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/duhovnoe-razvitie/listaem-sonnik-belaya-zmeya_5.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titletop"><a href="https://paulturner-mitchell.com/ko/29539-listaem-sonnik-belaya-zmeya.html">꿈의 책 목록 : 하얀 뱀</a></div> </div><div class="topisx"> <div class="topis"><a href="https://paulturner-mitchell.com/ko/29536-pochemu-nelzya-pozdravlyat-zaranee-s-dnem-rozhdeniya-legendy-i-sueveriya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/duhovnoe-razvitie/pochemu-nelzya-pozdravlyat-zaranee-s-dnem-rozhdeniya-legendi-i-sueveriya_4.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="titletop"><a href="https://paulturner-mitchell.com/ko/29536-pochemu-nelzya-pozdravlyat-zaranee-s-dnem-rozhdeniya-legendy-i-sueveriya.html">생일 축하를 전한 이유는 무엇입니까? 전설과 미신</a></div> </div> </div> <div class="caywort stylepx">음식</div> <div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40685-kak-zasolit-podberezoviki-osnovnye-sposoby-i-pravila-prigotovleniya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/eda-i-napitki/kak-zasolit-podberezoviki-osnovnie-sposobi-i-pravila-prigotovleniya_4.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40685-kak-zasolit-podberezoviki-osnovnye-sposoby-i-pravila-prigotovleniya.html">자작 나무 나무를 피클하는 방법? 기본 방법 및 준비 규칙</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div><div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40682-recepty-fondyu-v-domashnih-usloviyah.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/eda-i-napitki/recepti-fondyu-v-domashnih-usloviyah_7.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40682-recepty-fondyu-v-domashnih-usloviyah.html">집에서 퐁듀 요리법</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div><div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40681-krem-dlya-tiramisu-v-domashnih-usloviyah-krem-dlya-torta-tiramisu-s-maskarpone.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/eda-i-napitki/krem-dlya-tiramisu-v-domashnih-usloviyah-krem-dlya-torta-tiramisu-s-maskarpone_6.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40681-krem-dlya-tiramisu-v-domashnih-usloviyah-krem-dlya-torta-tiramisu-s-maskarpone.html">집에서 티라미수를위한 크림. 마스카 포네와 함께 케이크 크림 "티라미수"</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div><div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40680-kokteyl-otvertka-istoriya-sostav-recepty-prigotovleniya.html"><img src="/templates/web1/images/spacer.png" style="background:url(/images/eda-i-napitki/koktejl-otvertka-istoriya-sostav-recepti-prigotovleniya_4.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40680-kokteyl-otvertka-istoriya-sostav-recepty-prigotovleniya.html">칵테일 "스크루 드라이버": 역사, 구성, 조리법</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div><div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40679-tvorozhnoe-testo-bystro-vkusno-polezno.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40679-tvorozhnoe-testo-bystro-vkusno-polezno.html">두부 반죽 : 빠르고, 맛있고, 유용합니다.</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div><div class="blocos"> <div class="imagerl"><a href="https://paulturner-mitchell.com/ko/40678-recept-prigotovleniya-chechevicy-na-vse-sluchai-zhizni.html"><img src="/templates/web1/images/spacer.png" style="background:url(/templates/web1/dleimages/no_image.jpg) no-repeat; background-position: center; background-size:cover;-webkit-background-size:cover; -o-background-size:cover;moz-background-size:cover;" alt=""></a></div> <div class="rightist"><a href="https://paulturner-mitchell.com/ko/40678-recept-prigotovleniya-chechevicy-na-vse-sluchai-zhizni.html">모든 경우에 렌즈 콩 요리법</a></div> <div class="contocs"> <div class="authposbx ocorsxw"><a href="https://paulturner-mitchell.com/ko/eda-i-napitki/">음식과 음료</a></div> </div> </div> </div> <ins data-zxname="zx-adnet" data-zxadslot="ZX-TWSTNV" data-zxw="0" data-zxh="0" data-overlay="false" ><script type="text/javascript" src="https://cdn.zx-adnet.com/adx/twstnv_19091901.js"></script></ins> </div> <footer> <div class="container-content"> <div class="logofooters"><img src="/templates/web1/images/logofootman.png" alt=""></div> <div class="copirais">© 2018, "Paulturner-Mitchell.com". "Paulturner-Mitchell.com"에 대한 링크가 제공된 경우 사이트에 게시 된 모든 자료의 사용이 허용됩니다.</div> <div class="rigk-link"> <a href="/ko/index.php?do=feedback">- 연락처</a> </div> </div> </footer> <script type="text/javascript">new Image().src = "//counter.yadro.ru/hit?r" + escape(document.referrer) + ((typeof(screen)=="undefined")?"" : ";s"+screen.width+"*"+screen.height+"*" + (screen.colorDepth?screen.colorDepth:screen.pixelDepth)) + ";u"+escape(document.URL) + ";" +Math.random();</script> <script type="text/javascript"> <!-- var dle_root = '/'; var dle_admin = ''; var dle_login_hash = ''; var dle_group = 5; var dle_skin = 'web1'; var dle_wysiwyg = '1'; var quick_wysiwyg = '1'; var dle_act_lang = ["Yes", "No", "Enter", "Cancel", "Save", "Delete", "Loading. Please, wait..."]; var menu_short = 'Quick edit'; var menu_full = 'Full edit'; var menu_profile = 'View profile'; var menu_send = 'Send message'; var menu_uedit = 'Admin Center'; var dle_info = 'Information'; var dle_confirm = 'Confirm'; var dle_prompt = 'Enter the information'; var dle_req_field = 'Please fill in all the required fields'; var dle_del_agree = 'Are you sure you want to delete it? This action cannot be undone'; var dle_spam_agree = 'Are you sure you want to mark the user as a spammer? This will remove all his comments'; var dle_complaint = 'Enter the text of your complaint to the Administration:'; var dle_big_text = 'Highlighted section of text is too large.'; var dle_orfo_title = 'Enter a comment to the detected error on the page for Administration '; var dle_p_send = 'Send'; var dle_p_send_ok = 'Notification has been sent successfully '; var dle_save_ok = 'Changes are saved successfully. Refresh the page?'; var dle_reply_title= 'Reply to the comment'; var dle_tree_comm = '0'; var dle_del_news = 'Delete article'; var allow_dle_delete_news = false; //--> </script> <ins data-zxname="zx-adnet" data-zxadslot="ZX-TWSTNV" data-zxw="0" data-zxh="0" data-overlay="true" ><script type="text/javascript" src="https://cdn.zx-adnet.com/adx/twstnv_19091901.js"></script></ins> <script language="JavaScript" type="text/javascript"> $(function() { $.fn.scrollToTop = function() { $(this).hide().removeAttr("href"); if ($(window).scrollTop() >= "250") $(this).fadeIn("slow") var scrollDiv = $(this); $(window).scroll(function() { if ($(window).scrollTop() <= "250") $(scrollDiv).fadeOut("slow") else $(scrollDiv).fadeIn("slow") }); $(this).click(function() { $("html, body").animate({scrollTop: 0}, "slow") }) } }); $(function() { $("#Go_Top").scrollToTop(); }); </script> <script type="text/javascript"> $(document).ready(function () { $("ul.menu_body li:even").addClass("alt"); $('img.menu_head').click(function () { $('ul.menu_body').slideToggle('medium'); }); $('ul.menu_body li a').mouseover(function () { $(this).animate({ }, 50 ); }); $('ul.menu_body li a').mouseout(function () { $(this).animate({ }, 50 ); }); }); </script> <script src="/templates/web1/js/menu.js" type="text/javascript"></script> <script src="/templates/web1/js/active.js"></script> <script src="/templates/web1/js/libs-owl.js"></script> <script src="/templates/web1/js/owl.carousel.min.js"></script> <script type="text/javascript" src="/templates/web1/js/lib.js"></script> <script defer src="/templates/web1/js/jquery.flexslider.js"></script> <script type="text/javascript"> $(window).load(function(){ $('.flexslider').flexslider({ animation: "slide", start: function(slider){ $('body').removeClass('loading'); } }); }); </script> <a href="#" id='Go_Top'><img alt="예" src="/templates/web1/images/ups2.svg"></a> </body> </html>