-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (98 loc) · 3.72 KB
/
index.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
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<title>HI IT IS NEW TITLE </title>
<!---<link rel="stylesheet" href="web.css">-->
<!--<link rel="stylesheet" href="external.css">-->
<style>
label{
color:black;
}
</style>
<style>
label{
font-size: 30px;
}
</style>
<link rel="stylesheet" href="external.css">
</head>
<body>
<h1>Backtracking gg</h1>
<p>copyright ©2000 since ₹</p>
<p>(for paragraph righting )the usual <em>scenio(for changing font from normal to italic)</em> is that you are</br> faced with a <strong>number</strong> of <b>option</b> ,and you must choose one of these .after you will get a new set of option just what set of option ;just what set of option you get depends on what choice you made .this procedure is repeated over and over until you reach a final state; if you made a good sequence of choice ,your final state is a goal state:if you didn't</p>
<p>for another <del>paragraph(for corres marking word)</del> line <ins>also(for highliting a word)</ins> break</p>
<img src="https://www.cis.upenn.edu/~matuszek/cit594-2012/Pages/backtracking_files/treesearch.gif"this is from website img(absolute address)/>
<img src="C:\Users\raja\OneDrive\Desktop\web_development\practice web page\istockphoto-1305302113-612x612.jpg"this is from local host or device(absolute address)/>
<img src="coding love.png"/>
<ol>for ordered list
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ol>
<ul>
<li>for unorded list </li>
</ul>
<hr>"for adding horizontal line"
<pre>for same size and font type use pre : boolean solve(Node n) {
if n is a leaf node {
if the leaf is a goal node, return true
else return false
} else {
for each child c of n {
if solve(c) succeeds, return true
}
return false
}
}</pre>
<a href="https://youtube.com/">this is the link(can add a message)</a>
<a href="just_liking_to_another_html.html">click me for html link</a>
<form>
<fieldset>
<label
style="border-radius: 100%;background-color: black; margin-bottom: 10px;"
class="username">username
</label>
<br>
<input style="background-color:red;margin-top: 10px; padding-bottom: 10px;" type="text" id="username">
<br>
<label style="border-radius: 50%;" class="password2 fontType">password</label>
<br>
<input type="text" id="password">
<br>
<input type="submit" id="saitm" style="background-color: red; border-radius: 110px; border:red;padding-left: 50px; padding-right: 50px; margin-top: 10px;">
</fieldset>
<label type="submit" id="red font" style="background-color:aqua;">
</form>
<label
style="color: blue;">desing1</label>
<div style="background-color: darkorange;">this is div 1</div>
<div>this is div 2</div>
<span style="background-color:greenyellow;">this is span 1</span>
<span>this is span 2</span>
<textarea>text</textarea>
<div class="name" style="border-style: red;">here we will display the image</div>
</body>
<table border="1px">
<thead>
<tr><th colspan="2"></th>
<th>by 1</th>
<th>by 2</th>
<th>by 3</th>
</tr>
</thead>
<tbody>
<tr align="center">
<td>1.<td rowspan="2"></td></td>
<td>hello<td colspan="1"></td></td>
<td>hu</td></tr><!--- tr is used for makeing the row-->
<td>2.</td>
<td>h</td>
<td>g</td>
</tr>
<td>3.</td>
</tr>
</tbody>
</table>
<iframe width="460" height="215" src="https://www.youtube.com/embed/SQS97AAf0fY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</html>
this is changed