Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions lecture1/atributte.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>My Web page</title>
<style>
input[type=text][name=last] {
background-color: red
}
input[type=number] {
background-color: yellow
}
</style>
</head>
<body>
<form>
<input type="text" name="name" placeholder="Name">
<input type="text" name="last" placeholder="Last Name">
<input type="number" name="age" placeholder="Age">
</form>
</body>
</html>
20 changes: 20 additions & 0 deletions lecture1/hover.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>My Web page</title>
<style>
button {
width: 200px;
height: 50px;
font-size: 24px;
background-color: green;
}

button:hover {
background-color: orange;
}
</style>
</head>
<body>
</body>
</html>
1 change: 1 addition & 0 deletions lecture1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
<body>
Hello
Here is a new feature
New Branch
</body>
</html>
15 changes: 15 additions & 0 deletions lecture1/multiple.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>My Web page</title>
<style>
h1, h2 {
color: red;
}
</style>
</head>
<body>
<h1>Big Headline</h1>
<h2>Small Headline</h2>
</body>
</html>