shared.css
0.00MB
daily-challenge.css
0.00MB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<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"
/>
<link href="styles/shared.css" rel="stylesheet" />
<link href="styles/daily-challenge.css" rel="stylesheet" />
<title>My Daily Challenge</title>
</head>
<body>
<img src="images/dalrae.jpg" alt="A cat">
<h1>Max' Challenge for Wednesday, August 4th</h1>
<p id="todays-challenge">
Learn about the basics of web development - specifically dive into HTML &
CSS.
</p>
<p>
Explore the <a href="full-week.html">full week</a>
</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<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"
/>
<link href="styles/shared.css" rel="stylesheet" />
<link href="styles/full-week.css" rel=" stylesheet" />
<title>My Upcoming Challenges</title>
</head>
<body>
<h1>
My Upcoming Challenges
</h1>
<p id="view-todays-challenge">
<a href="index.html">View Today's Challenge</a>
</p>
<p>
Repeat what I learned about HTML & CSS
</p>
<p>
Do the exercises on HTML & CSS
</p>
<p>
Dive deeper into HTML & CSS and build more complex websites
</p>
</body>
</html>
|
cs |
'Frontend > HTML, CSS' 카테고리의 다른 글
Web Developer 부트캠프 (05/01) (0) | 2022.05.01 |
---|---|
Web Developer 부트캠프 (04/30) (0) | 2022.04.30 |
Web Developer 부트캠프 (04/26) (0) | 2022.04.26 |
2022 Web Development : CSS 기초 (0) | 2022.04.26 |
2022 Web Development : HTML 기초 (0) | 2022.04.26 |