does this browser code work (test)

UglyGod360

UglyGod360

Luminary
Joined
Feb 24, 2020
Posts
5,017
Reputation
5,970
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

Zagro
Replies
55
Views
2K
Zagro
Zagro
menas
Replies
239
Views
3K
Arzenic
Arzenic
menas
Replies
247
Views
49K
fodenglazer
F
BucketCrab
Replies
40
Views
11K
McSkziofren
McSkziofren

Users who are viewing this thread

Back
Top