-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio10_4.html
More file actions
146 lines (130 loc) · 5.04 KB
/
Copy pathbio10_4.html
File metadata and controls
146 lines (130 loc) · 5.04 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cell Reproduction</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f0f8ff;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #32a852;
color: white;
padding: 20px;
text-align: center;
font-size: 2.5em;
text-transform: uppercase;
letter-spacing: 1.5px;
}
main {
padding: 40px;
}
h2 {
color: #2e8b57;
border-bottom: 2px solid #32a852;
padding-bottom: 10px;
margin-bottom: 20px;
}
.sub-field {
margin-bottom: 40px;
}
.sub-field h3 {
color: #3cb371;
font-size: 1.8em;
margin-top: 10px;
}
.sub-field p {
font-size: 1.1em;
margin-bottom: 10px;
}
.formula {
font-family: 'Courier New', Courier, monospace;
background-color: #e0ffe0;
padding: 10px;
border-radius: 5px;
margin: 20px 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #32a852;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
Cell Reproduction
</header>
<main>
<section class="sub-field">
<h2>Mitosis</h2>
<h3>Stages of Mitosis</h3>
<p>Mitosis is divided into several stages, each with distinct processes.</p>
<ul>
<li><strong>Interphase</strong>: Preparation for mitosis (G1, S, and G2 phases).</li>
<li><strong>Prophase</strong>: Chromatin condenses into chromosomes, spindle fibers form.</li>
<li><strong>Metaphase</strong>: Chromosomes align at the center of the cell.</li>
<li><strong>Anaphase</strong>: Sister chromatids are pulled toward opposite poles.</li>
<li><strong>Telophase</strong>: New nuclear membranes form around the separated chromosomes.</li>
<li><strong>Cytokinesis</strong>: The cell divides into two daughter cells.</li>
</ul>
<h3>Formula for Chromosome Number in Mitosis:</h3>
<div class="formula">
2n → 2n
</div>
<p>Where 2n is the diploid number of chromosomes in the parent cell. After mitosis, the daughter cells also have 2n chromosomes.</p>
</section>
<section class="sub-field">
<h2>Meiosis</h2>
<h3>Stages of Meiosis</h3>
<p>Meiosis involves two rounds of division: Meiosis I and Meiosis II.</p>
<ul>
<li><strong>Prophase I</strong>: Homologous chromosomes pair up and cross over.</li>
<li><strong>Metaphase I</strong>: Homologous chromosomes align at the center.</li>
<li><strong>Anaphase I</strong>: Homologous chromosomes are pulled to opposite poles.</li>
<li><strong>Telophase I</strong>: Two daughter cells are formed, each with half the chromosome number (haploid).</li>
<li><strong>Meiosis II</strong>: Similar to mitosis, but it involves the division of haploid cells into four non-identical haploid cells.</li>
</ul>
<h3>Formula for Chromosome Number in Meiosis:</h3>
<div class="formula">
2n → n
</div>
<p>In Meiosis I, the chromosome number is halved. The diploid parent cell (2n) produces two haploid cells (n). After Meiosis II, the number remains n, resulting in four haploid daughter cells.</p>
</section>
<section class="sub-field">
<h3>Key Formulas Related to Cell Reproduction</h3>
<ul>
<li><strong>Cell Cycle Duration:</strong> T = T<sub>G1</sub> + T<sub>S</sub> + T<sub>G2</sub> + T<sub>M</sub></li>
<li><strong>Chromosome Number in Mitosis:</strong> 2n → 2n</li>
<li><strong>Chromosome Number in Meiosis:</strong> 2n → n</li>
<li><strong>Crossing Over and Genetic Recombination:</strong> Possible Genetic Variants = 2<sup>n</sup></li>
<li><strong>Genetic Variation after Meiosis:</strong> Number of Genetic Combinations = 2<sup>n</sup></li>
</ul>
</section>
<section class="sub-field">
<h3>Mendel's Laws of Inheritance</h3>
<ul>
<li><strong>Law of Segregation</strong>: The two alleles for a trait separate during gamete formation.</li>
<li><strong>Law of Independent Assortment</strong>: Genes located on different chromosomes assort independently of each other.</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 Yoseph Feyisa Wegi | All Rights Reserved.</p>
</footer>
</body>
</html>