-
Notifications
You must be signed in to change notification settings - Fork 5
/
Home.html
57 lines (48 loc) · 959 Bytes
/
Home.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
<html>
<meta http-equiv="Content-Type"
content="text/html; charset=EUC-KR">
<head>
<TITLE>Embeded SoftWare Education Environment with Nintendo</TITLE>
<style type="text/css">
body{ overflow-x:hidden; }
#nintendo{
position:relative;
left:260px;
top:10px;
}
#pc{
position:relative;
left:160px;
top:50px;
}
#eclipse{
position:relative;
left:380px;
top:-100px;
}
#info{
font-weight: bold;
color:white;
position:relative;
left:50px;
top:-60px;
}
</style>
</head>
<body>
<div id="nintendo">
<input type="image" src="images/nintendo.jpg">
</div>
<div id="pc">
<input type="image" src="images/pc.jpg">
</div>
<div id="eclipse">
<input type="image" src="images/eclipse.jpg">
</div>
<div id="info">
Eclipse, GNU 개발도구, 공개소스 OSEK/VDX 개발환경, 공개소스 가상머신<br>
등을 과제에 참여하고 있는 코어 개발자들이 활용하여 빠른 시간안에 개발 할 수 있는<br>
개발 환경을 제공합니다.
</div>
</body>
</html>