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
32 changes: 32 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,35 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
header {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
main {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
footer {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
body {
background-color: darkkhaki;
}
.Boxing {
margin: 2px;
padding: 2px;
}
.Boxing:first-child {
color: rgb(139, 61, 81);
font-size: large;
}
48 changes: 47 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<title>Boxing, Floyd mayweather</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
Expand All @@ -16,6 +16,52 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Adding the header -->
<header>Boxing legends</header>

<!-- Adding my main. then added a parent article and 3 child classes. -->
<main>
<article>
<article class="Boxing">
<h1>
Floyd Mayweather is considered one of the best boxers of all time.
</h1>
<summary>
<a href="https://www.youtube.com/watch?v=EskNRw1NxmA&t=7s"
>Floyd and security rough up Jake Paul</a
>
</summary>
</article>
<article class="Boxing">
<h2>
Beating the likes of Canelo who I would personally say is the pound
for pound boxer in the world right now.
</h2>
<summary>
<a
href="https://www.google.com/imgres?imgurl=https%3A%2F%2F2.bp.blogspot.com%2F-1AOZN1Bgm0c%2FWaLuo1LQw3I%2FAAAAAAAC5dI%2FtkRgCygGLjkYq28BWtAFL1HSrigdOZilQCLcBGAs%2Fs1600%2F21105963_1799824440033244_5384865104865911398_n.jpg&imgrefurl=https%3A%2F%2Fwww.wbusinesses.com%2F2017%2F08%2Ffloyd-mayweather-is-50-0-after-beating.html&tbnid=HlCrtG0ADunXDM&vet=12ahUKEwj78fCyy9jwAhVBYxoKHav7DeQQMygKegUIARDNAQ..i&docid=Y9Av5Ht1UllkGM&w=960&h=950&itg=1&q=floyd%2050%20and%200&ved=2ahUKEwj78fCyy9jwAhVBYxoKHav7DeQQMygKegUIARDNAQ"
>50 - 0</a
>
</summary>
</article>
<article class="Boxing">
<h3>Floyd vs Logan Paul</h3>
<summary>
<a
href="https://www.youtube.com/watch?v=bQYeSXpC244&ab_channel=jhon01manjhon01man"
>Mayweather highlights</a
>
</summary>
</article>
</article>
</main>

<!-- Adding my footer -->
<footer>
Thanks for visiting, <br />
My name is Declan Heritage.
</footer>

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