\documentclass[11pt]{report}
\usepackage{outline} \usepackage{pmgraph} \usepackage[normalem]{ulem}
\usepackage{graphicx} \usepackage{verbatim}
\title{
\includegraphics[width=1.75in]{hamdardlogo.PNG} \\
\vspace*{1in}
\textbf{Lab Report Title}}
\author{Author 1 (Fritzing)\\
        Author 2 (Proteus)\\
        Author 3 (Hardware)\\
		\vspace*{0.5in} \\
		Hamdard Institute of Engineering \& Technology\\
        \textbf{Hamdard University}\\
        Karachi, Pakistan
       } \date{\today}
%--------------------Make usable space all of page
\setlength{\oddsidemargin}{0in} \setlength{\evensidemargin}{0in}
\setlength{\topmargin}{0in}     \setlength{\headsep}{-.25in}
\setlength{\textwidth}{6.5in}   \setlength{\textheight}{8.5in}
%--------------------Indention
\setlength{\parindent}{1cm}
\begin{document}
%--------------------Title Page
\maketitle
%--------------------Begin Outline
\begin{outline}
\item \textbf{Introduction}
    
Write your semester project introduction in this page. 
\centering 
\begin{tabular}{|c|l|l|c|}
    \hline
    \# & Component Name & Model & Price (PKR) \\
    \hline
    1 & Microcontroller & ATMega16 & 200 \\
    \hline
    2 & Breadboard & DDDDDD & 100 \\
    \hline
    \multicolumn{3}{|r|}{Total} & \\ 
    \hline 
\end{tabular}
\newpage \item \textbf{Diagram}
Embed diagram from Fritzing and describe interconnections.
\includegraphics[width=6in]{hamdarduniv.PNG}
    
\newpage \item \textbf{Simulation Model}
Embed Proteus model here. 
\includegraphics[width=6in]{fest.PNG}
    
\newpage \item \textbf{Program Code}
\begin{verbatim}
#include <avr/io.h>
#include <util/delay.h>
int main( ) {
    unsigned int temp;
    DDRB = 0;    // Port B as input
    DDRC = 0xFF; // Port C as output
    
    while(1) {
        temp = PINB;   // Read Port B
        _delay_ms(10); // 10 msec delay
        PORTC = temp;  // Write to Port C
    }
    return 0;
}
\end{verbatim}
\newpage \item \textbf{Photoshot}
Use mobile camera to take a snapshopt of group while working on the project and place here. 
\centering \includegraphics[width=6in]{idaraesaid.PNG}
    
\end{outline}
\end{document}