summary refs log tree commit diff
path: root/12/question.txt
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-12 07:28:51 +0000
commit687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7 (patch)
tree41277db9c9201ddaae59222628f8e4f323e20eba /12/question.txt
parentrescue 11 (diff)
downloadhtml-687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7.tar
html-687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7.tar.gz
html-687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7.tar.bz2
html-687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7.tar.xz
html-687bcfcd19c98c0a4eeb6179ea40c41fb1141ab7.zip
rescue 12
Diffstat (limited to '12/question.txt')
-rw-r--r--12/question.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/12/question.txt b/12/question.txt
new file mode 100644
index 0000000..7b2a785
--- /dev/null
+++ b/12/question.txt
@@ -0,0 +1,19 @@
+Question:
+In this exercise, you added Facebook and Twitter logos to the
+footer element. Research how you can use Font Awesome to add
+social media icons to a webpage and summarize your findings.
+
+Answer:
+To use Font Awesome icons you need to link to the Font Awesome
+CSS file from the <head> element within all of your HTML pages.
+You can then add icons via the class attribute.
+
+Example HTML:
+
+<head>
+	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.7.1/css/all.css">
+</head>
+<body>
+	<a href="facebook.com" class="fab fa-facebook"></a>
+	<a href="twitter.com" class="fab fa-twitter"></a>
+</body>