User Tools

Site Tools


c:swap:2015:quiz01

eg.

  1. 아래에서 빠진 html elements는 무엇인가?
    <html>
    <head>
    <title>Page title</title> 
    </head> 
    <h1>This is a heading</h1>
    <p>This is a paragraph.</p>
    <p>This is another paragraph.</p>
    </html>
  2. The ( ) part of the HTML document is between <body> and </body>.
    1. hidden
    2. visible
  3. <a> tag defines HTML ( ).
    1. link
    2. images
    3. headings
  4. html (특히 html5) tag는 열고 닫는 부분이 각각 있어야 한다. 그러나 <br>의 경우에는 시작과 끝이 동시에 이루어지기에 한꺼번에 처리하게 된다. 이 방법을 직접 쓰시오.
  5. 아래에서 이미지 대신에 사용되는 attribute는 무엇인가?
    <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
  6. 인터넷의 월드와이드웹은 누가 발명하였는가?
  7. 아래와 같은 declaration은 언제부터 사용하였는가?
    <!DOCTYPE html>
    1. HTML3
    2. HTML4
    3. HTML4.3
    4. HTML5
  8. 아래에서 paragraph에 “London”이라는 text가 들어간 heading을 삽입하여라.
    <!DOCTYPE html>
    <html>
    <body>
    
    <p>London is the capital city of England. It is the most populous city 
    in the United Kingdom, with a metropolitan area of over 13 million 
    inhabitants.</p>
    
    </body>
    </html>
  9. Add a horizontal rule.
  10. 다음에서 blue의 글자모양이 무엇인지에 대해서 설명하시오.
    <p>My favorite color is <del>blue</del> red.</p>
  11. The < code > element does not preserve extra whitespace and line-breaks:
    1. O
    2. X
  12. html 코딩에서 코멘트는 어떻게 시작하는가?
    1. <!–
    2. ←-
    3. ←→>
  13. 아래에서 fiat 개체가 default로 선택되도록 하려면 무엇을 이용해야 하는가?
    <select name="cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
    <option value="fiat">Fiat</option>
    <option value="audi">Audi</option>
    </select>

아래의 body에서

<body>
<div id="header">
<h1>City Gallery</h1>
</div>

<div id="nav">
London<br>
Paris<br>
Tokyo<br>
</div>

<div id="section">
<h1>London</h1>
<p>
London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.
</p>
<p>
Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.
</p>
</div>

<div id="footer">
Copyright © W3Schools.com
</div>
</body>

다음의 style이 적용되었다고 하고

<style>
#header {
    background-color:black;
    color:yellow;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px; 
}
#section {
    width:350px;
    float:left;
    padding:10px; 
}
#footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:5px; 
}
</style>
  1. City Gallery의 배경색깔은?
  2. City Gallery의 폰트색깔은?
  3. London Paris Tokyo의 위치는 좌와 우중 어디인가?

  1. RWD stands for <pre>[ ]</pre> Web Design
c/swap/2015/quiz01.txt · Last modified: 2016/07/01 15:00 by hkimscil

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki