diff --git a/lectures/revealjs/02-software-development.adoc b/lectures/revealjs/02-software-development.adoc
new file mode 100644
index 0000000000000000000000000000000000000000..e0fde072d7ff260a8d60056b8211db48fa4643ee
--- /dev/null
+++ b/lectures/revealjs/02-software-development.adoc
@@ -0,0 +1,102 @@
+= Software Development 
+:customcss: slides.css
+:icons: font
+
+++++
+	<img id="main-logo" class="main-logo" src="images/template/main_logo_eng_no_text.png" width="300" alt="ntnu logo"/>
+++++
+
+[.smaller-80][.center-paragraph]
+IT1901 Fall 2019 - 2nd Lecture
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Overview
+
+- About software development
+- Software development methods
+- Software quality.
+- Practices used in modern agile development
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== About Software Development
+
+== What is Software Development
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Software development methods
+
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Software quality
+
+== What is software quality ?
+
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Practices used in modern agile development
+
+** source code management (SCM)
+** issue tracking
+** continuous integration (CI)
+
+== Source Code Management (SCM)
+
+== SCM Tools
+
+- CVS
+- SVN
+- Git
+- Mercurial
+
+
+== Issue Tracking
+
+
+== Continuous Integration (CI)
+
+
+== ! 
+
+image::../images/lecture02/doad.jpg[canvas, size=contain]
+
+++++
+ <div id="footer" class="footer">
+ 	<div style="display:table-row;">
+     <span class="element" style="width:150px;">
+     	<a href="https://www.ntnu.no" target="_blank">
+     		<img 	id="footer-logo" class="footer-logo" 
+     				src="images/template/logo_ntnu.png" 
+     				alt="ntnu logo" height="28"/>
+     	</a>
+     </span>
+     <span class="element" style="width:300px;">| IT1901 - 2nd lecture </span>
+     <span class="element">| Software Development </span>
+     <span class="element">&nbsp;&nbsp;&nbsp;&nbsp;</span>
+  </div>   
+ </div>
+ 
+ <div id="vertical-ntnu-name" class="vertical-ntnu-name">
+ 	<span class="helper"></span>
+ 	<img src="images/template/vertical-ntnu-name.png" alt="Norwegian University of Science and Technology" />
+ </div>
+ 
+ <script type="text/javascript">
+     window.addEventListener("load", function() {
+         revealDiv = document.querySelector("body div.reveal")
+         footer = document.getElementById("footer");
+         revealDiv.appendChild(footer);
+         
+         titleSlideDiv = document.querySelector("div.slides section.title")
+         mainLogo = document.getElementById("main-logo");
+         titleSlideDiv.prepend(mainLogo);
+         
+         vertName =  document.getElementById("vertical-ntnu-name");
+         revealDiv.appendChild(vertName);
+     } );
+ </script>
+++++
\ No newline at end of file
diff --git a/lectures/revealjs/course-intro.adoc b/lectures/revealjs/course-intro.adoc
index aa62a26609d72a12469cc0df77cda0419bc7d7b3..75b6d2f8781fae999f13c754faee9900108939ff 100644
--- a/lectures/revealjs/course-intro.adoc
+++ b/lectures/revealjs/course-intro.adoc
@@ -136,11 +136,19 @@ image::../images/lecture01/teamwork.png[canvas, size=contain]
 
 ++++
  <div id="footer" class="footer">
-     <span class="element"><a href="www.ntnu.no"><img id="footer-logo" class="footer-logo" src="images/template/logo_ntnu.png" alt="ntnu logo" height="28"/></a></span>
-     <span class="element">| IT1901 </span>
+ <div style="display:table-row;">
+     <span class="element" style="width:150px;">
+     	<a href="https://www.ntnu.no" target="_blank">
+     		<img 	id="footer-logo" class="footer-logo" 
+     				src="images/template/logo_ntnu.png" 
+     				alt="ntnu logo" height="28"/>
+     	</a>
+     </span>
+     <span class="element" style="width:300px;">| IT1901 </span>
      <span class="element">| Course Introduction </span>
      <span class="element">&nbsp;&nbsp;&nbsp;&nbsp;</span>
- </div>
+ 	</div>
+  </div> 
  
  <div id="vertical-ntnu-name" class="vertical-ntnu-name">
  	<span class="helper"></span>
diff --git a/lectures/revealjs/images/lecture02/doad.jpg b/lectures/revealjs/images/lecture02/doad.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..542314640f06a971f0c30c1f72ee1114b5f91fdf
Binary files /dev/null and b/lectures/revealjs/images/lecture02/doad.jpg differ
diff --git a/lectures/revealjs/images/template/vertical-ntnu-name.png b/lectures/revealjs/images/template/vertical-ntnu-name.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eec1161f37a8ed2222c7848700e68048b189646
Binary files /dev/null and b/lectures/revealjs/images/template/vertical-ntnu-name.png differ
diff --git a/lectures/revealjs/slides.css b/lectures/revealjs/slides.css
index 70ffdf7bb173854dab3518cc4a8492b6819618bd..ef62a7edfd8961bad88597cee913cd005f1abad2 100644
--- a/lectures/revealjs/slides.css
+++ b/lectures/revealjs/slides.css
@@ -185,15 +185,16 @@ section h2 {
    	width: 100%;
    	bottom: 0;
    	height: 40px;
-   	background-color: #0000AA;
+   	background-color: #124990;
+	border-top: 2px solid  #fff6d5;
  }
     
  .footer span {
    	display: table-cell;
-   	color: #FFFFFF;
+   	color: #fff6d5;
    	padding: 0px 15px 5px;
    	 
-   	text-align: center;
+   	text-align: left;
    	font-family: "Verdana", sans-serif;
    	font-size: 55%;
 	vertical-align: middle;
@@ -225,7 +226,7 @@ section h2 {
 	position: absolute;
 	height: 100%;
 	right: 5px;
-	vertical-align: middle; 
+	vertical-align: middle;
 }
 
 .vertical-ntnu-name img {
@@ -235,6 +236,14 @@ section h2 {
 	box-shadow: none !important;
 }
 
+.vertical-ntnu-name span.vertical-ntnu-text {
+	display: inline;
+	vertical-align: middle;
+	border: none !important;
+	box-shadow: none !important;	
+}
+
+
 .helper {
     display: inline-block;
     height: 100%;