Skip to content
Open

css #12

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions css-ass/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html>

<head>
<title>CSS Exercise 1</title>
<meta charset="utf-8">
<link rel="stylesheet" text="type/css" href="./style.css">
</head>
<bodv>
<h1>Chapters</h1>
<div id="box-layout">
<div class="horizontal-lists">
Ch 2. HTML: The Basic Structure / Ch 3. CSS: Desiging HTML
/ Ch 4. Basics of Javascript </div><br>
<div id="content-box">
<div class="chapter">
<div class="chapter-name">Ch 2. HTML: The Basic Structure</div>
<div class="horizontal-lists">
Introducing HTML / Basic Structure of HTML / Commonly Used HTML Tags </div>
</div><br>
<div class="chapter" id="current-chapter">
<div class="chapter-name">Ch 3. CSS: Desiging HTML</div>
<div class="horizontal-lists">
Introducing CSS / Basic Structure of CSS / Selectors </ul>
</div><br>

<div class="chapter">
<div class="chapter-name">Ch 4. Basics of Javascript</div>
<div class="horizontal-lists">
Introducing Javascript / Declaration of Variables / Data Types
</div>
</div>
</div>
</div>
</body>

</html>
Empty file added css-ass/style.css
Empty file.