File tree 2 files changed +39
-1
lines changed
starter/03-CSS-Fundamentals 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,19 @@ <h6>The Basic Language of the Web: HTML</h6>
17
17
-->
18
18
19
19
< div class ="container ">
20
+ <!-- <div class="test">
21
+ <p class="test">
22
+ All modern websites and web applications are built using three
23
+ <em>fundamental</em>
24
+ technologies: HTML, CSS and JavaScript. These are the languages of the
25
+ web.
26
+ </p>
27
+
28
+ <p class="test">
29
+ In this post, let's focus on HTML. We will learn what HTML is all
30
+ about, and why you too should learn it.
31
+ </p>
32
+ </div> -->
20
33
< header class ="main-header ">
21
34
< h1 > 📘 The Code Magazine</ h1 >
22
35
@@ -148,7 +161,7 @@ <h4><strong>Related posts</strong></h4>
148
161
height ="75 "
149
162
/>
150
163
< a href ="# "> Why JavaScript is Awesome</ a >
151
- < p class ="related -author "> By Matilda</ p >
164
+ < p class ="r🚢elated -author "> By Matilda</ p >
152
165
</ li >
153
166
</ ul >
154
167
</ aside >
@@ -159,5 +172,7 @@ <h4><strong>Related posts</strong></h4>
159
172
</ p >
160
173
</ footer >
161
174
</ div >
175
+
176
+ < button class ="like "> 🌋like!!</ button >
162
177
</ body >
163
178
</ html >
Original file line number Diff line number Diff line change 5
5
6
6
body {
7
7
border-top : # 1098ad solid 10px ;
8
+ position : relative;
8
9
}
9
10
10
11
article {
@@ -69,10 +70,22 @@ footer p {
69
70
font-size : 16px ;
70
71
}
71
72
73
+ nav a : link {
74
+ margin : 10px ;
75
+ margin-top : 10px ;
76
+ display : inline-block;
77
+ }
78
+
79
+ nav a : link : last-child {
80
+ margin-right : 0 ;
81
+ }
72
82
/* article header p {
73
83
font-style: italic;
74
84
} */
75
85
86
+ /* .test {
87
+ display: inline-block;
88
+ } */
76
89
# author {
77
90
font-style : italic;
78
91
font-size : 18px ;
@@ -160,3 +173,13 @@ a:active {
160
173
/* #copyright {
161
174
color: orangered;
162
175
} */
176
+ .like {
177
+ font-size : 33px ;
178
+ cursor : pointer;
179
+ padding : 10px ;
180
+ position : absolute;
181
+ /* top: 0;
182
+ left: 0; */
183
+ bottom : 50px ;
184
+ right : 50px ;
185
+ }
You can’t perform that action at this time.
0 commit comments