-
+
+
)}
diff --git a/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md b/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md
index 979063898..864135d70 100644
--- a/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md
+++ b/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md
@@ -5,6 +5,18 @@ order: 100
type: lesson
---
+## What is SQL
+
The SQL language is widely used today across web frameworks and database applications. Knowing SQL gives you the freedom to explore your data, and the power to make better decisions. By learning SQL, you will also learn concepts that apply to nearly every data storage system.
The statements covered in this course use SQLite Relational Database Management System (RDBMS). You can also access a glossary of all the SQL commands taught in this course.
+
+We have some code sample here for users to test. For example this is an example of `inline-code` entry and below is an example of a code block:
+
+
+```javascript
+const someVariable = 'xyz';
+
+console.log(someVariable);
+```
+
diff --git a/src/styles/global.css b/src/styles/global.css
index 5e939e86b..0c4214920 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -71,9 +71,10 @@ a > code:before {
.course-content h1 > code,
.course-content h2 > code,
.course-content h3 > code {
- background: transparent !important;
+ background: #282A36 !important;
color: #f4f4f5 !important;
- font-size: inherit !important;
+ padding: 2px 4px;
+ border-radius: 5px;
}
.course-content.prose ul li > code:before,
@@ -82,7 +83,7 @@ a > code:before {
.course-content p > code:after,
.course-content a > code:after,
.course-content a > code:before {
- content: '`' !important;
+ content: '' !important;
}
.note-content-editor[contenteditable] ~ grammarly-extension,