diff --git a/content/roadmaps/114-software-architect/content/111-web-and-mobile/100-reactive-functional-programming.md b/content/roadmaps/114-software-architect/content/111-web-and-mobile/100-reactive-functional-programming.md
index 4454db813..1344a0980 100644
--- a/content/roadmaps/114-software-architect/content/111-web-and-mobile/100-reactive-functional-programming.md
+++ b/content/roadmaps/114-software-architect/content/111-web-and-mobile/100-reactive-functional-programming.md
@@ -1 +1,12 @@
-# Reactive functional programming
\ No newline at end of file
+# Reactive and Functional programming
+
+Functional programming is a programming paradigm designed to handle pure mathematical functions. This paradigm is totally focused on writing more compounded and pure functions.
+
+Reactive programming describes a design paradigm that relies on asynchronous programming logic to handle real-time updates to otherwise static content. It provides an efficient means -- the use of automated data streams -- to handle data updates to content whenever a user makes an inquiry.
+
+Free Content
+
+Learning Functional Programming
+Functional Programming with JavaScript
+What is Functional Programming?
+What is Reactive Programming?
diff --git a/content/roadmaps/114-software-architect/content/111-web-and-mobile/102-spa-ssr-ssg.md b/content/roadmaps/114-software-architect/content/111-web-and-mobile/102-spa-ssr-ssg.md
index 846ee0c27..0e95faf52 100644
--- a/content/roadmaps/114-software-architect/content/111-web-and-mobile/102-spa-ssr-ssg.md
+++ b/content/roadmaps/114-software-architect/content/111-web-and-mobile/102-spa-ssr-ssg.md
@@ -1 +1,10 @@
-# Spa ssr ssg
\ No newline at end of file
+# SPA vs SSG vs SSR
+
+- **SPA**: A single page application loads only a single web document from the server and then updates the content of that document on demand via `Javascript APIs` without reloading the entire document. React, Vue, Angular are the top frameworks used to create single page applications.
+- **SSR**: This technique uses a server like `Node.js` to fully render the web document upon the receival of a request and then send it back to the client. This way the user get an interactive document with all the necessary information without having to wait for any JavaScript or CSS files to load.
+- **SSG**: Static site generation renders the web document in the server(like SSR), however the page is rendered at **build time**. So, instead of rendering the page on the server upon the receival of a request, the page is already rendered in the server, waiting to be served to the client.
+
+Free Content
+
+Web design patterns — SSR, SSG, and SPA
+Rendering on the Web
diff --git a/content/roadmaps/114-software-architect/content/111-web-and-mobile/104-microfrontends.md b/content/roadmaps/114-software-architect/content/111-web-and-mobile/104-microfrontends.md
index 21afeaa52..dc9e347f7 100644
--- a/content/roadmaps/114-software-architect/content/111-web-and-mobile/104-microfrontends.md
+++ b/content/roadmaps/114-software-architect/content/111-web-and-mobile/104-microfrontends.md
@@ -1 +1,8 @@
-# Microfrontends
\ No newline at end of file
+# Microfrontends
+
+Microfrontends is an architectural style where independently deliverable frontend applications built by different teams using different technologies are composed into a greater whole. Simply, a Micro-Frontend is a portion of a webpage (not the entire page). There is a “Host” or a “Container” page in the Micro-Frontend Architecture page that can host one or more Micro-Frontends.
+
+Free Content
+
+Micro-Frontends Course - Beginner to Expert
+Micro Frontends
diff --git a/content/roadmaps/114-software-architect/content/111-web-and-mobile/105-w3c-and-whatwg-standards.md b/content/roadmaps/114-software-architect/content/111-web-and-mobile/105-w3c-and-whatwg-standards.md
index e301f6abc..1c08df458 100644
--- a/content/roadmaps/114-software-architect/content/111-web-and-mobile/105-w3c-and-whatwg-standards.md
+++ b/content/roadmaps/114-software-architect/content/111-web-and-mobile/105-w3c-and-whatwg-standards.md
@@ -1 +1,10 @@
-# W3c and whatwg standards
\ No newline at end of file
+# W3c and WHATWG Standards
+
+World Wide Web Consortium (W3C) standards define the best practises for web development to enable developers to build rich interactive experiences that are available on any device. Theses standards range from recommended web technologies such as HTML, CSS, XML to the generally accepted principles of web architecture, semantics and services.
+
+Web Hypertext Application Technology Working Group (WHATWG) is another set of web standards that came into existence after W3C announced that it was going to be focusing on XHTML over HTML.
+
+Free Content
+
+W3C Standards
+WHATWG Standards