-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
138 lines (127 loc) · 3.7 KB
/
index.php
File metadata and controls
138 lines (127 loc) · 3.7 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Code Library</title>
<link type="text/css" rel="stylesheet" href="styles/main.css"/>
<link type="text/css" rel="stylesheet" href="styles/contStyles.css"/>
</head>
<body>
<?php
include("includes/header.php");
?>
<div id="container" style="background-color:#eee">
<div class="left">
<section class="left_top">
<h3>About</h3>
<h1>CodeLibrary</h1>
<p>
Hello Friends!
<br>
Welcome to Code Library. As the name suggests we are here to provide you with any help you need when it comes to coding - be it programs or concepts.
<br><br>
We will help you develop the skills needed to understand what you need if you want to code. Also we will help you out wherever you need us!
<br><br>
We welcome students from all departments to share their knowledge and their interests and help their peers in this process!
<br>
So Let's Begin!
</p>
</section>
<section class="left_bottom">
<h4 style="font-size:15px;">Recently Added</h4>
<div class="imp_box">
<h1>C++</h1>
</div>
<div class="imp_box_2">
<h1 style="font-size:20px;">Data Strutures</h1>
</div>
<br>
<!-- <div class="imp_box_2">-->
<h4 style="font-size:15px;">Coming Soon</h4>
<!-- </div>-->
<div class="imp_box_2">
<h1 style="font-size:20px;">Computer Networks</h1>
</div>
<div class="imp_box">
<h1>Java</h1>
</div>
<div class="imp_box_2">
<h1>OS</h1>
</div>
<div class="imp_box_2">
<h1>SQL</h1>
</div>
</section>
</div>
<div class="center" >
<section id="cont_header_img">
<img src="images/header.jpg"/>
</section>
<section id="cont_bottom">
</section>
</div>
<aside class="right">
<article class="right_top">
<h4 style="color:#FFF;">HIGHLIGHTS</h4>
<div class="high_box">
<div class="high_box_img">
<a href="articles/articles.php"> <img src="images/html.jpg"></a>
</div>
<div class="high_details">
<h5>How To Program? </h5>
<p>- By Hemant Baid</p>
</div>
</div>
<div class="high_box">
<div class="high_box_img">
<a href="articles/GRE.php"> <img src="images/html.jpg"></a>
</div>
<div class="high_details">
<h5>The 7-Step Guide for GRE</h5>
<p>- By Sahil Thapar</p>
</div>
</div>
<!--</div>
<div class="high_box">
<div class="high_box_img">
<img src="images/html.jpg">
</div>
<div class="high_details">
<h5>HTML5 </h5>
<p>What's New in HTML 5. And bla bla bla</p>
</div>
</div>
<div class="high_box">
<div class="high_box_img">
<img src="images/html.jpg">
</div>
<div class="high_details">
<h5>HTML5 </h5>
<p>What's New in HTML 5. And bla bla bla</p>
</div>
</div>
<div class="high_box">
<div class="high_box_img">
<img src="images/html.jpg">
</div>
<div class="high_details">
<h5>HTML5 </h5>
<p>What's New in HTML 5. And bla bla bla</p>
</div> -->
</div>
</article>
</aside>
</div>
<!--
<div class="big bg_grey ">
<div class="small bg_grey">
<div class="small_left"></div>
<div class="small_right"></div>
</div>
</div>
-->
<?php
include("includes/footer.php");
?>
</body>
</html>