Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove the unnesscary code
  • Loading branch information
tajulafreen committed Jul 22, 2024
commit 018469937569be2a8f11e2316a34f49ef44eb210
35 changes: 16 additions & 19 deletions Source-Code/AnalogWatch/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Analog Watch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="clock">
<div class="hour" id="hour">
<div class="hr" id="hr"></div>
</div>
<div class="hand minute" id="minute">
<div class="mn" id="mn"></div>
</div>
<div class="hand second" id="second">
<div class="sc" id="sc"></div>
</div>
<div class="center">

</div>
<div class="hour" id="hour">
<div class="hr" id="hr"></div>
</div>
<div class="hand minute" id="minute">
<div class="mn" id="mn"></div>
</div>
<div class="hand second" id="second">
<div class="sc" id="sc"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</body>
</html>