Skip to content

Commit b079648

Browse files
committed
Create archive.html
1 parent 51d726e commit b079648

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

archive.html

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2+
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<title></title>
7+
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
8+
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
9+
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
10+
11+
<!--[if IE 6]><link href="default_ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
12+
13+
</head>
14+
<body>
15+
<div id="page" class="container">
16+
<div id="header">
17+
<div id="logo">
18+
<h1><a href="index.html">RMK CSE Coding Club</a></h1>
19+
</div>
20+
<div id="menu">
21+
<ul>
22+
<li class="current_page_item"><a href="index.html" accesskey="1" title="">Home</a></li>
23+
<li><a href="archive.html" accesskey="2" title="">Problem Archive</a></li>
24+
</ul>
25+
</div>
26+
</div>
27+
<div id="main">
28+
29+
<div id="featured">
30+
<ul class="style1">
31+
<li class="first">
32+
<p class="date"><a href="#">Aug<b>27</b></a></p>
33+
<h3>Check for palindrome formation</h3>
34+
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/problem1.c">Given a string of alphabets, determine whether a palindrome can be formed by rearranging the letters of the string.
35+
For example, the string ‘abaab’ can be rearranged as ‘ababa’ to form a palindrome whereas the string ‘acccaa’ cannot be rearranged to form a palindome.</a></p>
36+
</li>
37+
<li>
38+
<p class="date"><a href="#">Aug<b>11</b></a></p>
39+
<h3>Length of the given string without using string functions</h3>
40+
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/problem2.c"> Find and display the length of the given string(take "Hello!" for example). The code should satisfy the following criteria:
41+
No string functions. The code should be inside the main(). No functions are allowed. The program(inside the main() ) should be of only one line and contain only one semicolon.</a></p>
42+
</li>
43+
</ul>
44+
</div>
45+
</div>
46+
</div>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)