diff --git a/src/lab/exp7/Theory.html b/src/lab/exp7/Theory.html
index 7b19d8d..d3754b9 100644
--- a/src/lab/exp7/Theory.html
+++ b/src/lab/exp7/Theory.html
@@ -214,7 +214,7 @@
Depth First Search (DFS)
u can be reached from v using tree edges, but there an edge from u to v also.
- An edge (u,v) is a back edge if [d(u), f(u)] is a subinterval of [d(v), f(v)]
-
+The following two Edges : Forward Edge and Cross Edge are only present in Directed Graph.
Forward Edges : A non-tree edge (u, v) is called as a forward edge if v is a descendant of u in the
dfs tree. v can be reached from u using tree edges, but there an edge from u to v also.
- An edge (u,v) is a forward edge if [d(v), f(v)] is a subinterval of [d(u), f(u)].