-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (84 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ur Coding Mom</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
h1 {
color: #3d423d;
font-family: 'Times New Roman', Times, serif;
font-size: 40px;
text-align: center;
margin-top: 30px;
}
nav {
background-color: #48574a;
color: #fff;
text-align: center;
padding: 10px 0;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 40px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
padding: 10px 15px;
transition: background-color 0.3s ease;
}
nav ul li a:hover {
background-color: #90a297;
}
h2 {
color: #5b7451;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
margin-top: 20px;
text-align: center;
}
h3 {
color: #4e6246;
margin-top: 50px;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
}
p {
color: #666;
font-size: 17px;
font-family: 'Times New Roman', Times, serif;
text-align: center;
margin: 0 auto;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>UrCodingMom</h1>
<nav>
<ul>
<li><a href="Learning.html">Learning</a></li>
<li><a href="Coding.html">Coding</a></li>
<li><a href="Survey.html">Survey</a></li>
</ul>
</nav>
<h2>Our mission is to be your virtual mom in the world of computer science. </h2>
<p>Just like a mother guides her child through life's journey, we are here to guide and teach you everything about coding and technology.
We understand that learning computer science can be overwhelming, but don't worry, we'll break down complex concepts into bite-sized lessons that are easy to understand. From programming languages to algorithms and data structures, we'll be your trusted companion every step of the way.
Our platform is designed to be a safe and supportive space where you can explore, experiment, and grow. We'll provide you with curated resources, interactive tutorials, and fun coding challenges to make learning enjoyable and rewarding.</p>
<h3>What to expect?</h3>
</body>
</html>