-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 5.39 KB
/
index.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<!--This is the head tag of the site containing the metadata, title, link to the stylesheet and the website logo.-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python 30-Day Project</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="logo.png" sizes="16x16" type="image/png">
<link rel="icon" href="logo.png" sizes="32x32" type="image/png">
</head>
<body>
<div class="container">
<header>Python 30-Day Project</header>
<!--The div section below displays the Team members and they have all been linked to their respective github profiles.-->
<div class="team-members">
<p class="team-title">Project Team</p>
<div class="members">
<a href="https://github.com/joegeorge022" target="_blank"><span>Joe George</span></a>
<a href="https://github.com/JoeMartinRince" target="_blank"><span>Joe Martin</span></a>
<a href="https://github.com/Ganesh-Chandran005" target="_blank"><span>Ganesh Chandran</span></a>
<a href="https://github.com/Jobthomas10" target="_blank"><span>Job Thomas</span></a>
<a href="https://github.com/IndhuSubash-2007" target="_blank"><span>Indhu Subash</span></a>
</div>
<!--This is the link to the progress dashboard.-->
<a href="progress_dashboard.html" class="progress-link">View Progress Dashboard</a>
</div>
<!--The below div cointains the Days and their respective tasks.
You can view the task descriptions as a webpage.
This is because each folder in the repo had a readme.md (markdown files) which can be viewed as webpages. -->
<div class="day-links">
<a href="Day-0" class="day">Day 0: Print Function</a>
<a href="Day-1" class="day">Day 1: Variables</a>
<a href="Day-2" class="day">Day 2: Arithmetic Operations</a>
<a href="Day-3" class="day">Day 3: User Inputs</a>
<a href="Day-4" class="day">Day 4: Working with Strings</a>
<a href="Day-5" class="day">Day 5: Functions</a>
<a href="Day-6" class="day">Day 6: Working with Lists</a>
<a href="Day-7" class="day">Day 7: Looping through Lists</a>
<a href="Day-8" class="day">Day 8: Loop Control Statements</a>
<a href="Day-9" class="day">Day 9: Creating Custom Lists</a>
<a href="Day-10" class="day">Day 10: Working with Loops and Lists</a>
<a href="Day-11" class="day">Day 11: Exploring Tuples and Sets in Python</a>
<a href="Day-12" class="day">Day 12: Introduction to Sets</a>
<a href="Day-13" class="day">Day 13: Introduction to Tuples</a>
<a href="Day-14" class="day">Day 14: Introduction to Dictionaries </a>
<a href="Day-15" class="day">Day 15: Functions and Looping with Dictionaries</a>
<a href="Day-16" class="day">Day 16: Applying Sets, Lists, and Tuples in Python</a>
<a href="Day-17" class="day">Day 17: Exploring Functions and Recursion in Python</a>
<a href="Day-18" class="day">Day 18: Mastering Nested Loops in Python</a>
<a href="Day-19" class="day">Day 19: Fibonacci Sequence with Recursion</a>
<a href="Day-20" class="day">Day 20: Exploring Nested Functions in Python</a>
<a href="Day-21" class="day">Day 21: Exploring String and Integer Operations in Python</a>
<a href="Day-22" class="day">Day 22: Exploring Dictionary Operations</a>
<a href="Day-23" class="day">Day 23: Demonstrating List Operations</a>
<a href="Day-24" class="day">Day 24: Coming Soon</a>
<a href="Day-25" class="day">Day 25: Coming Soon</a>
<a href="Day-26" class="day">Day 26: Coming Soon</a>
<a href="Day-27" class="day">Day 27: Coming Soon</a>
<a href="Day-28" class="day">Day 28: Coming Soon</a>
<a href="Day-29" class="day">Day 29: Coming Soon</a>
<a href="Day-30" class="day">Day 30: Coming Soon</a>
</div>
</div>
<!--The below tags until audio helps with the styling of the website.
Although its subtle and not the most important thing It's still fun.-->
<div class="loader"></div>
<div class="forest-fog"></div>
<div class="forest-glimmer">
<div class="glimmer"></div>
<div class="glimmer"></div>
<div class="glimmer"></div>
<div class="glimmer"></div>
<div class="glimmer"></div>
<div class="glimmer"></div>
</div>
<div class="progress-bar"></div>
<button class="back-to-top" aria-label="Back to top"></button>
<div class="ambient-light"></div>
<div class="aurora"></div>
<div class="mist-layer"></div>
<div class="forest-particles">
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
</div>
<!--The below audio tag allows an audio to be played in the background of the website.
I believe the audio matches the aesthetic of the website. -->
<audio autoplay loop><source src="assets/song.mp3" type="audio/mpeg">
</audio>
<!--The below tag links the javascript code to the html website.-->
<script src="js/main.js"></script>
</body>
</html>