-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Web Study</title>
<link rel="stylesheet" href="./index.css" type="text/css">
</head>
<body>
<div id="main_page">
<h1>Web Study</h1>
<ol>
<h2>
<li><a href="./main_child/html_page.html" class="saw">HTML</a></li>
</h2>
<h2>
<li><a href="./main_child/css_page.html" class="saw" id="active">CSS</a></li>
</h2>
<h2>
<li><a href="./main_child/js_page.html">JavaScript</a></li>
</h2>
</ol>
<img
src="https://s3-ap-northeast-2.amazonaws.com/opentutorials-user-file/module/3135/7648.png"
id="coding_img"
/>
<div style="clear: both;"></div>
<p id="web_description"></p>
<br>
<a href="./main_child/js_page/js_test.html" style="text-decoration:underline">js test hyperlink</a>
</div>
<script src="./index.js"></script>
</body>
</html>