-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathindex.html
58 lines (55 loc) · 2.16 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Change your WEBSITE TITLE HERE-->
<title>Edward's template</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css" />
<!-- <script src="index.js"></script> -->
</head>
<body>
<div class="text-intro">
<div class="intro">
<!-- Here's the Big title and the subtitle on the left on the main page -->
<h1>XXX's Island</h1>
<h2>Type your subtitle here</h2>
</div>
<div class="author">
<!-- Here's some basic information, you can add more <p></p> or delete any from below -->
<h3>Author: XXX</h3>
<p>I love python</p>
<p>I love econometrics</p>
<p>I love C++</p>
</div>
</div>
<div class="container">
<!-- Here's the cards on the right. You can add more cards with copy-paste the whole <div class="card"></div> block -->
<div class="card">
<div class="content">
<h2></h2>
<!-- The title on the card.-->
<h3>Data Science</h3>
<div class="hov">
<!-- The subtitle -->
<p>Professional experiences and research experiences of data science</p>
<!-- Link to the subpage-->
<a href="./pages/ds_page/index.html">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<h2></h2>
<h3>Game Design</h3>
<div class="hov">
<p>Professional experiences in game industry</p>
<!-- Link to the subpage-->
<a href="./pages/game_page/index.html">Read More</a>
</div>
</div>
</div>
</div>
</body>
</html>