Skip to content

Commit

Permalink
#1
Browse files Browse the repository at this point in the history
  • Loading branch information
raja8287 committed Oct 12, 2021
0 parents commit a9f9d02
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 0 deletions.
30 changes: 30 additions & 0 deletions external.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
label{
color: yellow !important;
}
#password2{
color: magenta !important;
}
#saitm{
color: greenyellow !important;

}
.username{
color: red !important;
border-width: 13px;
margin: 10px;

}
.password2{
background-color:coral;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.fontType{
font-size: 30px;

}
.name{
border:red ;
background-color: blue;
margin: ;
padding: 100px;
}
104 changes: 104 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 &copy;2000 since &#8377;</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

0 comments on commit a9f9d02

Please sign in to comment.