-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter 1 and 2.html
73 lines (64 loc) · 2.96 KB
/
chapter 1 and 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>begin</title>
</head>
<body>
<!-- headinds and paragraph -->
<h1>LIST OF BOOKS </h1>
<h2>LIST OF BOOKS </h2>
<h3>LIST OF BOOKS </h3>
<h4>LIST OF BOOKS </h4>
<h5>LIST OF BOOKS </h5>
<h6>LIST OF BOOKS </h6>
<p>thesr a lot or books to raed</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Laudantium nostrum earum optio alias. Totam ea optio dignissimos modi, officiis quos ipsa facere, possimus iusto harum reprehenderit consectetur soluta eveniet excepturi.</p>
<hr>
<!-- exaple of absulute -->
<a href="https://codewithharry.com">click here to go to harry website </a>
<!-- eaxapmle of realative -->
<a href="/practice.html">go to general</a><br>
<hr>
<!-- this is a orignal or absolute image -->
<img src="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=465&q=80" alt="human image"width=121px>
<!-- this is defoult -->
<img src="img.jpg" alt="human image "width=121px>
<hr>
<!-- boid italic and underline tags -->
<b>tnis is bold</b><br>
<i>this is italic</i><br>
<u>this is underline</u> <br>
<hr>
<!-- big and small -->
<big>bthis is big</big><br>
<small>this is samll</small><br>
<hr>
<!-- superscript and subcript -->
<p>co <sub>2</sub></p>
<p>a <sup>2</sup>+ bx + c</p>
<hr>
<pre>
#include <iostream>
using namespace std;
int main() {
int first_number, second_number, sum;
cout << "Enter two integers: ";
cin >> first_number >> second_number;
// sum of two numbers in stored in variable sumOfTwoNumbers
sum = first_number + second_number;
// prints sum
cout << first_number << " + " << second_number << " = " << sum;
return 0;
}</pre>
<!-- chapter 2 paractice set -->
<br>
<hr>
<!-- number 1 -->
<img src="https://images.unsplash.com/photo-1541963463532-d68292c34b19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8M3x8fGVufDB8fHx8fA%3D%3D&w=1000&q=80" alt="not process" width="120pix">
<img src="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aHVtYW58ZW58MHx8MHx8fDA%3D&w=1000&q=80" alt=""width=120pix>
<img src="https://media.istockphoto.com/id/1263344362/photo/man-solo-traveling-backpacker-hiking-in-scandinavian-mountains-active-healthy-lifestyle.webp?b=1&s=170667a&w=0&k=20&c=w_YwViEpcNU06V3EU6uyFU5XNq8s7WSxw-g8kg-1glk=" alt=""width=120pix><hr>
<!-- nmber 2=equation -->
<p>C + O <sub>2</sub> ↔ CO <SUB>2</SUB></p><hr>
</html>