-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5g.html
More file actions
46 lines (41 loc) · 1.14 KB
/
5g.html
File metadata and controls
46 lines (41 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<P class="heading">freeCodeCamp.org <span class=at>@freeCodeCamp 1h</span></P>
<p class="detail">As a web developer, you'll want to make your projects easy to use ans navigate around.</p>
<p class="user">Here<span class="whiitis">@chp_it </span>outlines the top skills new developers shoud have</p>
<style>
.heading{
font-family: Arial;
font-weight: bold;
margin-bottom: 8px;
}
.at{
color:grey;
font-weight: normal;
cursor: pointer;
}
.detail{
font-family: arial;
width:490px;
font-weight: bold;
margin-top: 0px;
}
.user{
font-family: arial;
font-weight: bold;
font-size: 14px;
}
.whiitis{
color:green;
font-weight: normal;
cursor: pointer;
}
</style>
</body>
</html>