Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
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
48 changes: 48 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,51 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
*{
box-sizing: border-box;

}
body {
background-color: #227cb121;
padding: 20px;

}

.header {
text-align: center;
text-decoration-color: blueviolet;
}
h1 {
color: rebeccapurple;
}

img {
max-width: 100%;
height: 360px;
float: none;
padding-top: 0.1em;
}

main {
line-height: normal;
text-align: center;
}

p:first-child{
background-color: #00d0ff;
font-weight: bolder;
}

h3 {
color: #0041ffed;
}


footer{
padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;


}
81 changes: 81 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,88 @@
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>

<body>

<header class= "header">
<h1>
CHILDREN ARE ANGELS
</h1>
<p>
This is my blog about the joys of having Children in your life
</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0c/Kids_playing_pog.jpeg" alt="kids wearing pirate costume" />
</header>

<main class="main">
<h3>
ANGELS
</h3>
<article>

<p>

I Love Children a lot,though it can sometimes be Challenging to look after them,
they are fun to be with and will make you laugh.
Children say the darndest things of course,they are Angels and will believe anything you
tell them.
They are gentle souls and are sensitive to changes in their environment,changes like
emotions in people.
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters,
as opposed to using 'Content here, content here',
making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text,
and a search for 'lorem ipsum' will uncover many web sites.
For more interesting reading about children, you can check out this blog
<a href="http://blogs.edweek.org/teachers/classroom_qa_with_larry_ferlazzo/2020/11/allow_time_for_children_to_read_whatever_they_want.html" target="blank" >click here</a>
</p>
<h3>
INFLUENCE
</h3>
<p>
Children can be easily influenced because of their gentle nature.
They can be molded through what they see and hear what the adults in their lives do.
That is why the early growing years of a child is very important.
It shapes their thinking and their mental health.
Contrary to popular belief, Lorem Ipsum is not simply random text.
It has roots in a piece of classical Latin literature from 45 BC,
making it over 2000 years old. Richard McClintock,
a Latin professor at Hampden-Sydney College in Virginia,
looked up one of the more obscure Latin words, consectetur,
from a Lorem Ipsum passage, and going through the cites of the word in classical literature,
discovered the undoubtable source.
Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of
"de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero,
written in 45 BC. This book is a treatise on the theory of ethics,
very popular during the Renaissance. The first line of Lorem Ipsum,
"Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
For more interesting reading about children, you can check out this blog
<a href="https://blogs.edweek.org/edweek/ask_a_psychologist/2020/11/the_best_way_to_teach_values_to_kids_according_to_research.html" target="blank" >click here</a>
</p>
<h3>
LOREM IPSUM
</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
For more interesting reading about children you can check out this blog
<a href="blog-sketch-week-1.png" target="blank" >click here</a>
</p>
</article>
</main>

<footer>
Victoria Ukaonu is a traniee at CodeYourFuture (CYF).
She is on a learning Journey to be a FullStack Web developer.
This is one of her assingnment on Html/Css.

</footer>

<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
Expand Down