0% found this document useful (0 votes)
25 views2 pages

#Chapter 1

The document contains the code for chapter 2 of a mobile book application. It includes navigation buttons to go to the previous or next chapter, increase or decrease font size, set the light or dark reading mode, and bookmark the current page. The main content area is designated for inserting the text of the chapter between paragraph tags.

Uploaded by

Serkan K. Ferat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views2 pages

#Chapter 1

The document contains the code for chapter 2 of a mobile book application. It includes navigation buttons to go to the previous or next chapter, increase or decrease font size, set the light or dark reading mode, and bookmark the current page. The main content area is designated for inserting the text of the chapter between paragraph tags.

Uploaded by

Serkan K. Ferat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

Capitolul 2 -->
<div data-role="page" id="chapter1" data-theme="a" data-url="chapter1">
<!-- content -->
<div data-role="content" id="contentDiv">
<div class="sidebar">
<div data-role="controlgroup">
<a href="#chapter1" > <!-- AICI PUI CAPITOLUL ANTERIOR Intre . De exemplu aici
esti la capitolul 2 -- >
<div class="ui-btn">
<i class="fa fa-arrow-left fa-1x"></i>
</div>
</a>
<a href="#home" >
<div class="ui-btn">
<i class="fa fa-home fa-1x"></i>
</div>
</a>
<a href="#chapter3" > <!-- AICI PUI CAPITOLUL URMATOR intre -- >
<div class="ui-btn">
<i class="fa fa-arrow-right fa-1x"></i>
</div>
</a>
<a href="#" id="incfont">
<div class="ui-btn">
<i class="fa fa-font fa-1x"></i>+
</div>
</a>

<a href="#" id="decfont">


<div class="ui-btn">
<i class="fa fa-font fa-1x"></i></div>
</a>
</div>

<fieldset data-role="controlgroup">
<input type="radio" id="Day" value=" Day" name="radio-group-1" checked/>
<label for="Day"><i class="fa fa-sun-o fa-1x"></i> </label>
<input type="radio" id="Night"
value=" Night" name="radio-group-1" />
<label for="Night"><i class="fa fa-moon-o fa-1x"></i></label>
<a href="javascript:setbookmark();" id="bookmark">
<div class="ui-btn">
<i class="fa fa-bookmark-o fa-1x"></i>
</div>
</a>
</fieldset>
</div> <!-- /Sidebar -->

<div class="mainCont">
AICI PUI CONTINUTUL CARTII. Fiecare paragraph este intre <p> </p>
</div> <!-- /mainCont -->
</div> <!-- /contentDiv -->
</div><!-- /page -->

You might also like