Hello all,
I have recently discovered this community(last week) and started doing the code challenges right away, beginning with the “Responsive Web Design Certification”.
Today I have finished my first project ever. I must mention that I have absolutely no background in this domain.
I would very much appreciate your input.
Find my project bellow:
HTML:
<main id="main">
<h1 id="title">Walter Elias Disney</h1>
<p id="tribute-info">A pioneer of the American animation industry</p>
<div id="img-div">
<img src="https://i.ebayimg.com/images/g/sXAAAOSwcwhVQCcx/s-l1600.jpg" class="smaller-image" id="image" alt="Walt Disney">
<div id="img-caption"> Walt Disney surrounded by his friends </div>
<a id="tribute-link" href="https://en.wikipedia.org/wiki/Walt_Disney" target="_blank">if you want to know more: wikipedia.org</a>
</div>
</main>
CSS:
body{
text-align: center;
background-color: #ffe5ff;
}
#image {
width: 300px;
margin-left: 100px;
margin-right: 100px;
}
#main {
background-color: #ffe5aa;
}
#title {
background-color: #93E1ff;
}
Thank you!