how do you limit paragraphs character width
the picture is buggy or something. i can see the picture in live server but wont show up when i run the html file
how do you limit paragraphs character width
the picture is buggy or something. i can see the picture in live server but wont show up when i run the html file
Hi @SeenDGK.
For the QR image, you are missing a dot before the " / " in the image src.
Like so: <img src="./image-qr-code250x250.png" alt="">
For <link rel="shortcut icon" href="./images/favicon-32x32.png" type="image/x-icon">.
This image does not exist in your repo. If you choose to include it in, you can either:
I hope this is helpful.
I followed the font sizes and styling in the Figma file. However, I got different results. Any idea why?
Hi @yosephwinata.
You said you got different results. Is it the font colors and line heights? These are the only two things I noticed that's different from the design.
In the style.guide.md file, it is stated that, for font colors:
You can achieve these by using hsla()
function in CSS.
For example, if the person's name color is hsl(217, 19%, 35%)
,
hsla(217, 19%, 35%, 0.5)
hsla(217, 19%, 35%, 0.7)
.The last number in hsla()
function sets the opacity value (0.0 - 1.0) for the color.
For line-height, maybe set line-height: 1.25
to <h1>.
That's all I guess. Please correct me if I'm wrong.