Can anyone explain that code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can anyone explain that code

<!DOCTYPE html> <html> <head> <title>My Blog</title> <link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet"> </head> <body> <!-- About Me section start --> <div class="section"> <h1><span>About Me</span></h1> <p> Hey! I'm <strong>Alex</strong>. Coding has changed my world. It's not just about apps. Learning to code gave me <i>problem-solving skills</i> and a way to communicate with others on a technical level. I can also develop websites and use my coding skills to get a better job. And I learned it all at <strong>SoloLearn</strong> where they build your self-esteem and keep you motivated. Join me in this rewarding journey. You'll have fun, get help, and learn along the way! </p> <p class="quote">"Declare variables, not war"</p> </div> <!-- About Me section end --> </body> </html>

18th Jul 2019, 2:37 AM
Vickiee Kohlii
Vickiee Kohlii - avatar
6 Answers
0
what would i suggest is, that you finish your html course and then you will understand this code because this is as simple as it gets and you will remember it better that way 😉
18th Jul 2019, 2:44 AM
Dovahkiin
Dovahkiin - avatar
+ 1
Thanks bro
18th Jul 2019, 2:46 AM
Vickiee Kohlii
Vickiee Kohlii - avatar
+ 1
Vickiee Kohlii ur welcome bro, trust me this is basic stuff, plus when you finish your course hop in on challenges to confirm your knowledge 🙌🏻
18th Jul 2019, 2:48 AM
Dovahkiin
Dovahkiin - avatar
0
explain?
18th Jul 2019, 2:41 AM
Dovahkiin
Dovahkiin - avatar
0
I don't know that link span div class and also class inside <p
18th Jul 2019, 2:43 AM
Vickiee Kohlii
Vickiee Kohlii - avatar
0
I'm not sure what you need explained, but based on your tag, the span element is just an element meant for grouping text. Span alone doesn't do anything, but the span element can be styled from css or have classes that css styles to change specific text styling within an element. More information on mdn: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
18th Jul 2019, 2:44 AM
JS Coder