-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (81 loc) · 3.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-3.1.1.js"></script>
<script src="js/script.js"></script>
<link rel="icon" href="img/favicon.ico">
<style type="text/css">
</style>
</head>
<body onscroll="scroll_menu();">
<div id="menu-div" >
<ul>
<li ><a style="padding:5 30;" href="index.html"><img id="ico" src="img/vjs.png" style="width:63px;height:49;"></a></li>
<li><a href="visualize.html">Visualize</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Examples</a>
<div class="dropdown-content">
<a href="factorial_while_loop.html">Factorial - while loop</a>
<a href="factorial_for_loop.html">Factorial - for loop</a>
<a href="factorial_recursive.html">Factorial - recursive</a>
</div>
</li>
<li><a href="about.html">about-us</a></li>
</ul>
</div>
<div id="wrapper">
<div class="banner">
<img id="banner-img" src="img/background-3.jpg"/>
<div class="ban-par">
Sign-Up Now and start Visualizing your code
</div>
<a class="sign-up-btn" href="sign-up.html" target="_self">Sign-Up</a>
</div>
<div class="hw-main">
<h2 class="hw-header">How it works</h2>
<hr width="25%">
<div class="step-spn">
<div class="hw-sinup">
<span>1</span>
<h3>Sign-Up</h3>
<p>Click sign-Up button to sign-up to our website
then click on "Visualize" from the menu.</p>
</div>
<div class="insert"> <span>2</span>
<h3>Code</h3>
<p>Insert your program's code blocks from the blocks box. </p>
</div>
<div class="execute"> <span>3</span>
<h3>Execute</h3>
<p>Click Execute to Execute your code </p>
</div>
<div class="visual" >
<span>4</span>
<h3>Visualize</h3>
<p>Press Next to trace your code step-by-step and visual every step variables.</p>
</div>
</div>
</div>
<div class="desc-dv">
<!--<intro>
this project created by:
<ul>
<li>Ibrahim Atef</li>
<li>Ayman Mohamed</li>
<li>Mohamed Othman</li>
<li>Mohamed Ashraf</li>
</ul>
</intro>-->
<!-- <article1>
Avengers Project helps people overcome fundamental barriers to learning JavaScript, understanding what happens as the computer excutes each line of a JavaScript source code.
</article1>
<br/>
<article2>
Using this tool you can write a JavaScript programs in your web browser and visualize what the computer is doing step-by-step as it executes those programs.
</article2>-->
</div>
</div>
<footer></footer>
</body>
</html>