Skip to content

Commit

Permalink
Add seven segment display in pure CSS (#1784)
Browse files Browse the repository at this point in the history
Co-authored-by: Sophia Brandt <16630701+sophiabrandt@users.noreply.github.com>
  • Loading branch information
ankeshp03 and sophiabrandt committed Oct 3, 2023
1 parent 21b743f commit 5625ece
Show file tree
Hide file tree
Showing 4 changed files with 428 additions and 0 deletions.
Binary file added Art/Ankesh/segment-display.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions Art/Ankesh/segment-display.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Seven Segment Display</title>
<link rel="stylesheet" href="./segment-display_styles.css" />
</head>
<body>
<div class="sevenSegmentContainer">
<div class="seven-segment">
<div class="segment-A"></div>
<div class="segment-B"></div>
<div class="segment-C"></div>
<div class="segment-D"></div>
<div class="segment-E"></div>
<div class="segment-F"></div>
<div class="segment-G"></div>
</div>
</div>
</body>
</html>
Loading

0 comments on commit 5625ece

Please sign in to comment.