forked from avionschool/batch12-fe-activities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (63 loc) · 1.5 KB
/
index.html
File metadata and controls
78 lines (63 loc) · 1.5 KB
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
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Portfolio</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="row-flex">
<div id="sidebar">
<div id="title">
<h3>Portfolio</h3>
</div>
<ul>
<li>
<a href="./survey_form/form.html">Survey Form</a>
</li>
<li>
<a href="./tribute_page/tribute_page.html">Tribute Page</a>
</li>
<li>
<a href="./flex-chessboard/board.html">Flex Chessboard</a>
</li>
<li>
<a href="./grid-chessboard/board.html">Grid Chessboard</a>
</li>
<li>
<a href="./landing-page/index.html">Landing Page</a>
</li>
<li>
<a href="./momentum-app/index.html">Momentum App</a>
</li>
<li>
<a href="./meca-j-car-rental/index.html">Meca-J Car Rental</a>
</li>
</ul>
</div>
<div id="content" class="col-80">
<div id="landing-page" style="height: 550px">
<h1>This is my Github page</h1>
<h1 style="color: #F5A25D;">UNDER CONSTRUCTION</h1>
</div>
<!-- <div id="portfolio" style="height: 550px">
<h1>Portfolio</h1>
<ul>
<li>
<a href="./survey_form/form.html">Survey Form</a>
</li>
<li>
<a href="./tribute_page/tribute_page.html">Tribute Page</a>
</li>
<li>
<a href="./chessboard/flex-board.html">Flex Chessboard</a>
</li>
<li>
<a href="./chessboard/grid-board.html">Grid Chessboard</a>
</li>
</ul>
</div> -->
</div>
</div>
</body>
</html>