You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Simplify) I would like to introduce you to the DRY Principle in programming, which is Do Not Repeat yourself. It is a commonly used best practice method. You repeat:
font-family: Helvetica;
You do not have to write this line multiple times but instead do something like:
h1,
h2,
h3,
p {
font-family: "Helvetica", sans-serif;
}
(Simplify) I would like to introduce you to the DRY Principle in programming, which is Do Not Repeat yourself. It is a commonly used best practice method. You repeat:
font-family: Helvetica;
You do not have to write this line multiple times but instead do something like:
https://github.com/BraydenPB/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/Resources/style.css#L2
https://github.com/BraydenPB/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/Resources/style.css#L10
https://github.com/BraydenPB/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/Resources/style.css#L25
The text was updated successfully, but these errors were encountered: