forked from madneal/ife-ecnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style type="text/css">
*{
padding: 0;
margin: 0;
}
body{
font-family: serif;
background: #000;
color: #fff;
}
header{
margin: 10px;
padding: 5px;
}
.task{
margin: 15px;
padding: 5px;
}
.task a{
color: #ffffff;
text-decoration: none;
}
</style>
<title>ife-ECNU</title>
</head>
<body>
<header>
<h1>neal1991.github.io</h1>
<p>This project is the task in Baidu Institute Front End Technology. You can fork the code fron <a href="https://github.com/neal1991/ife-ecnu">
github.
</a> </p>
<div class="task">
<ul>
<li><a href="http://neal1991.github.io/ife-ecnu/task1/index.html">task1</a> </li>
<p>This is the first task in ife. It is quite simeple,and contains only the html elements.</p>
<li><a href="http://neal1991.github.io/ife-ecnu/task2/index.html">task2</a> </li>
<p>It inherit the most elements from the task2, and add the features by css.</p>
<li>task2</li>
<li>task3</li>
</ul>
</div>
</header>
</body>
</html>