Skip to content

Commit 391b5ad

Browse files
authored
Merge pull request #2 from lakshmibollapragada/master
html code
2 parents f41e126 + dbc7a9a commit 391b5ad

File tree

15 files changed

+256
-2
lines changed

15 files changed

+256
-2
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1+
# Git Commands
2+
- git clone https://github.com/progaurab/html-css-js-tutorial.git
3+
- git add .
4+
- git commit -m "minor fixes"
5+
- git push
6+
7+
8+
19
# ex01-dark-mode-calculator
2-
# ex02-
10+
# ex02-
11+
------------------------------------
12+
# HTML Tags
13+
- cite:
14+
- abbr:
15+
-
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<style>
7+
.grid-container {
8+
display: grid;
9+
grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
10+
gap: 20px; /* Add spacing between grid items */
11+
}
12+
13+
.grid-item {
14+
background-color: #f2f2f2;
15+
padding: 20px;
16+
text-align: center;
17+
}
18+
</style>
19+
</head>
20+
<body>
21+
<div class="grid-container">
22+
<div class="grid-item">1</div>
23+
<div class="grid-item">2</div>
24+
<div class="grid-item">3</div>
25+
<div class="grid-item">4</div>
26+
<div class="grid-item">5</div>
27+
<div class="grid-item">6</div>
28+
</div>
29+
</body>
30+
</html>

css-training/ex09-css-grid-layout/index2.html

Whitespace-only changes.

html-training/ex01-dark-mode-calculator/dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ input {
5050
}
5151

5252
input[type="text"] {
53-
background-color: rgb(47, 51, 50);
53+
background-color: rgb(255, 255, 255);
5454
}
5555

5656
input[type="button"]:hover {
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Learning HTML</title>
5+
</head>
6+
<body>
7+
8+
</body>
9+
</html>

html-training/ex08-basic-html-tags/02-document-information.html

Whitespace-only changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<html>
2+
<head>
3+
<meta charset="Utf-8" />
4+
<base href="http://www.google.com" target="_blank" />
5+
<title>my first website</title>
6+
<link href="http:www.gmail.com" />
7+
</head>
8+
<body></body>
9+
</html>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<html>
2+
<head>
3+
<title>fourth exe</title>
4+
5+
</head>
6+
<body>
7+
<div>
8+
<h1>first heading</h1>
9+
<p> paraghaph of the page</p>
10+
<hr/>
11+
<h2>second heading</h2>
12+
<p> paraghaph starts here <br/>this is a new line</p>
13+
</div>
14+
</body>
15+
</html>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<html>
2+
<head>
3+
<title>2 page</title>
4+
</head>
5+
<body>
6+
<strike>strike this line</strike>
7+
<i>archana</i>
8+
<blockquote>let me check how the block quotes work</blockquote>
9+
<abbr>del</abbr>
10+
11+
<p><cite>The Scream</cite> by Edward Munch. Painted in 1893.</p>
12+
13+
<p><abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
14+
15+
</body>
16+
</html>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>More Tags</title>
5+
</head>
6+
<body>
7+
<p>
8+
<dfn><abbr title="Cascading Style Sheet">CSS</abbr></dfn
9+
>is a language that describe the style of an HTML document.
10+
</p>
11+
<address>1025 Hill wood road minosota pin-19229</address>
12+
<code> if(i=0;i<5;i++) { y=i+5; } </code>
13+
<p>This text contains subscript text X<sub>2</sub></p>
14+
<p>This text contains superscript text y<sup>8</sup></p>
15+
<small> this is small text</small><br />
16+
<strong>This text is strong</strong><br />
17+
<b>This text is bold</b><br />
18+
<em>This text is emphasis text</em><br />
19+
<i>italic text here</i><br />
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)