-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenchallenge4.html
67 lines (59 loc) · 2.18 KB
/
openchallenge4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>컴퓨터 기술 소개</title>
<style>
#title {color: brown; text-align: center;}
body {background: aliceblue;}
ul {border: 1px dotted; color: black;}
a {text-decoration: none;}
p {font-family: 휴먼편지체, Arial; text-indent: 1em; font-size: 1em;}
h3 {color: blue; text-shadow: 3px 3px 4px blue;}
h4{text-align: center;}
footer {border-radius: 10px; background-color: orange; }
hr.hline {style="height: 1px black;"}
</style>
</head>
<body>
<header>
<h1>20200903 김나령</h1>
<h1 id="title">스마트폰</h1>
<p> 스마트폰은 컴퓨터를 결합한 무선 휴대전화기이다. PC에서 실행되는 운영체제보다 작게 만든 모바일 운영체제를 탑재하여 인터넷 검색, 전자우편, 간단한 문서 편집, 카메라, 오디오 및 비디오 재생 등 PC의 기능을 거의 모두 갖추고 있다.</p>
<hr class="hline">
</header>
<nav>
<h3> 목차</h3>
<ul>
<li><a href="#history"> 역사</a>
<li><a href="#android"> 안드로이드폰</a>
<li><a href="#iphone"> 아이폰</a>
<li><a href="#sample"> 샘플</a>
</ul>
</nav>
<section>
<article>
<h3 id="history">역사</h3>
<p>최초의 스마트폰은 사이먼(Symon)으로 추정된다.</p>
</article>
<article>
<h3 id="android">안드로이드</h3>
<p>안드로이드 (영어: Android)는 휴대 전화를 비롯한 휴대용 장치를 위한 운영 체제와 미들웨어, 사용자 인터페이스 그리고 표준 응용 프로그램을 포함하고 있는 모바일 운영체제이다.</p>
</article>
<article>
<h3 id="iphone">아이폰</h3>
<p>아이폰(영어:iphone)은 2007년 1월 9일, 애플이 발표한 스마트폰 시리즈입니다..</p>
</article>
<article>
<h3 id="sample">샘플</h3>
<h4>스마트폰 샘플</h4>
<img src="media/iphone.png" width="180" height="200" alt="아이폰">
<img src="media/android.png" width="180" height="200" alt="안드로이드">
<img src="media/samsung.png" width="180" height="200" alt="삼성">
</article>
</section>
<footer>
<p><a href="survey4.html">설문조사</a></p>
<p>Copyright 2017 by Kitae</p>
</footer>
</body>
</html>