-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex(01).html
95 lines (92 loc) · 3.45 KB
/
index(01).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
91
92
93
94
95
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WEBPAGE FOR BEGINNER IN CODING</title>
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body bgcolor="black">
<!-- Header -->
<header>
<div class="container">
<div class="header-left">
<img
class="logo"
src="https://prog-8.com/images/html/advanced/main_logo.png"
/>
</div>
<span class="fa fa-bars menu-icon"></span>
<div class="header-right">
<a href="print.html">Lessons</a>
</div>
</div>
</header>
<!-- Top -->
<div class="top-wrapper">
<div class="container">
<h1>LEARN TO CODE.</h1>
<h1>BEGIN WITH US AND GO BEYOND US</h1>
<h3>This Page will give some Basic Knowledge of Coding</h3>
<h3>
We offer you Theory as well as Practical Concepts.
</h3>
</div>
</div>
<!-- Lesson -->
<div class="lesson-wrapper">
<div class="container">
<div class="heading">
<h2>Ready to become an awesome programmer?</h2>
<h3>Let's learn to code, learn to be creative!</h3>
</div>
<div class="lessons">
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/html.png" />
<p><a link="print.html" href="print.html" class="ko"> Print </a></p>
</div>
<p class="text-contents">
Above link will get you to printing statement part which is very basic level in coding.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/jQuery.png" />
<p><a link="conditional_statements.html" href="conditional_statements.html" class="ko"> Conditional Statements </a></p>
</div>
<p class="text-contents">
This link will get you too conditional statements which are very much helpful in coding.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/ruby.png" />
<p><a link="loops.html" href="loops.html" class="ko"> Loops </a></p>
</div>
<p class="text-contents">
This portion is very very important for programmer as loops is most used thing in cosing.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/php.png" />
<p> <a link="switch_case.html" href="switch_case.html" class="ko">Switch Case</a></p>
</div>
<p class="text-contents">
Switch case is an important part as it check condition and run till default.
</p>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<img src="https://prog-8.com/images/html/advanced/footer_logo.png" />
<p>Learn to code, learn to be creative.</p>
</div>
<script type="text/javascript" src="script.js"></script>
</footer>
</body>
</html>