Add components
This commit is contained in:
24
timeline/index.html
Normal file
24
timeline/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Timeline</title>
|
||||
<link rel="stylesheet" href="/timeline.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="timeline">
|
||||
<div class="timeline-line"></div>
|
||||
<div class="timeline-el" id="timeline-dot-1">
|
||||
<div class="timeline-year">Year</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Description</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-2">
|
||||
<div class="timeline-year">Year 2</div> <!-- TODO: Check date is accurate-->
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Description 2</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user