does this browser code work (test)

UglyGod360

UglyGod360

Kraken
Joined
Feb 24, 2020
Posts
4,902
Reputation
5,799
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
  <link rel="stylesheet" href="styles/shared.css">
  <link rel="stylesheet" href="styles/daily-challenge.css">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Oswald:wght@700&display=swap" rel="stylesheet">
  <title>UglyGod360's Website</title>
</head>
<body>
  <img src="images/challenges-trophy.jpg" alt="A trophy">
  <h1>UglyGod360's Challenge for Sunday, May 22nd</h1>
<p id="weekly-challenge">Learn about the basics of web development - specifically dive into HTML & CSS.</p>
 </p>
 <p>Explore the <a href="full-week.html">full week</a></p>
</body>
</html>


CSS:
body {
[/QUOTE]
    text-align: center;
    color: rgb(83, 75, 75);
    background-color: rgb(233, 215, 207);
}

h1 {
    font-family: 'Oswald', sans-serif;
}

p {
    font-family: 'Fira Sans', sans-serif;
}

a {
    text-decoration: none;
    color: rgb(167, 1, 78);
}

a:hover {
    text-decoration: underline;
}

#weekly-challenge {
    font-weight: bold;
    font-size: 52px;
    color: rgb(170, 96, 83);
}

img {
    height: 200px;
    width: 200px;
    border-radius: 100px;
}

Youre a stupid nigger
 
Last edited:
well apparently fucking not
 
Looks like you forgot the close the img element.
 
In your HTML code, you need to put </img>
image is a void element like the anchor element so it doesn't need a closing tag
 
How is your's not working?

Screenshot 66
 

Similar threads

dreamcake1mo
Replies
99
Views
24K
copamine
copamine

Users who are viewing this thread

Back
Top