Skip to content

finishing lesson 1 - 2 #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
58 changes: 58 additions & 0 deletions Alex-Exercises/lesson-01/ex1g.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Exercise 1g</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
a{
color: rgb(0,113,133);
}

.rate{
color: green;
}

.add-cart{
background-color: rgb(255,216,20);
color: black;
height: 40px;
width: 130px;
cursor: pointer;
border: none;
border-radius: 20px;
margin-right: 8px;
}
.buy-but{
background-color: rgb(255,164,28);
color: black;
height: 40px;
width: 130px;
cursor: pointer;
border: none;
border-radius: 20px;
margin-right: 8px;
}


</style>
</head>
<body>
<a href="https://www.amazon.in/?tag=msndeskabkin-21&ref=pd_sl_myh38910b_e&adgrpid=1324913121555467&hvadid=82807336470514&hvnetw=o&hvqmt=e&hvbmt=be&hvdev=c&hvlocint=&hvlocphy=158501&hvtargid=kwd-82807957656483:loc-90&hydadcr=5620_2377278&mcid=bf83b4991e2f3eb79d07c8f0ac1b5488" target="_blank">
Back to Amazon
</a>
<p>
Nike Black Running Shoes
</p>
<p class="rate">
Rs.350 - in stock
</p>
<p>
free delivary
</p>

<button class="add-cart">Add to cart</button>
<button class="buy-but">Buy now</button>
</body>
</html>
19 changes: 19 additions & 0 deletions Alex-Exercises/lesson-01/ex_1abcdef.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Exercise</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body>
<button>click</button>
<button>Alex</button>
<button>briyani</button>
<p>Hello, World !</p>
<p>Today i'm started learning html & css !</p>

<a href="https://www.google.co.in/" target="_blank">Search with google</a>

</body>
</html>
124 changes: 124 additions & 0 deletions Alex-Exercises/lesson-02/buttons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>button practice</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
.uber{
background-color: black;
color: white;
border: none;
height: 40px;
width: 111px;
cursor: pointer;
}

.amazon{
background-color: rgb(255,216,20);
color: black;
border: none;
height: 30px;
width:140px;
border-radius: 15px;
margin-left: 8px;
cursor: pointer;
}

.github{
background-color: rgb(46,169,74);
color: white;
font-weight: bold;
font-size: 15px;
border:none;
height: 40px;
width: 105px;
border-radius: 10px;
cursor: pointer;
margin-left: 8px;
}

.bootstrap{
background-color: rgb(121,82,179);
color: white;
font-weight: bold;
border: none;
border-radius: 8px;
height: 40px;
width: 105px;
cursor: pointer;
margin-top: 15px;
}
.bootstrap-d{
background-color:white;
color: rgb(108,117,125);
font-weight: bold;
border: 1px solid rgb(108,117,125);
border-radius: 8px;
height: 40px;
width: 105px;
cursor: pointer;
margin-top: 15px;
}

.linkedin{
background-color: rgb(10,102,194);
color: white;
font-weight: bold;
font-size: 13px;
height: 40px;
width: 230px;
border: none;
border-radius: 20px;
cursor: pointer;
margin-top: 15px;
}

.linkedin-s{
background-color: white;
color:rgb(10,102,194);
font-weight: bold;
font-size: 15px;
height: 40px;
width: 90px;
border: 1px solid rgb(10,102,194);
border-radius: 20px;
cursor: pointer;
margin-top: 15px;
margin-left: 8px;
}
</style>
</head>
<body>
<button class="uber">
Request Now
</button>

<button class="amazon">
Add to cart
</button>

<button class="github">
sign up
</button>

<br>

<button class="bootstrap">
Get started
</button>
<button class="bootstrap-d">
Download
</button>

<br>

<button class="linkedin">
Apply on company website
</button>
<button class="linkedin-s">
save
</button>
</body>
</html>
154 changes: 154 additions & 0 deletions Alex-Exercises/lesson-03/buttons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>button practice</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
.uber{
background-color: black;
color: white;
border: none;
height: 40px;
width: 111px;
cursor: pointer;
transition: all 0.15s ease;
}

.uber:hover{
opacity: 0.8;
}

.amazon{
background-color: rgb(255,216,20);
color: black;
border: none;
height: 30px;
width:140px;
border-radius: 15px;
margin-left: 8px;
cursor: pointer;
transition: all 0.15s ease;
}
.amazon:hover{
background-color: rgb(220, 184, 9);
}

.github{
background-color: rgb(46,169,74);
color: white;
font-weight: bold;
font-size: 15px;
border:none;
height: 40px;
width: 105px;
border-radius: 10px;
cursor: pointer;
margin-left: 8px;
transition: all 0.15s ease;
}
.github:hover{
box-shadow: 6px 5px 10px rgba(0,0,0,0.5);
}

.bootstrap{
background-color: rgb(121,82,179);
color: white;
font-weight: bold;
border: none;
border-radius: 8px;
height: 40px;
width: 105px;
cursor: pointer;
margin-top: 15px;
transition: all 0.15s ease;
}
.bootstrap:hover{
background-color: rgb(102, 69, 152);
}
.bootstrap-d{
background-color:white;
color: rgb(108,117,125);
font-weight: bold;
border: 1px solid rgb(108,117,125);
border-radius: 8px;
height: 40px;
width: 105px;
cursor: pointer;
margin-top: 15px;
transition: all 0.15s ease;
}
.bootstrap-d:hover{
color: white;
background-color: rgb(108,117,125);
}

.linkedin{
background-color: rgb(10,102,194);
color: white;
font-weight: bold;
font-size: 13px;
height: 40px;
width: 230px;
border: none;
border-radius: 20px;
cursor: pointer;
margin-top: 15px;
transition: all 0.15s ease;
}
.linkedin:hover{
background-color: rgb(6, 86, 167);
}

.linkedin-s{
background-color: white;
color:rgb(10,102,194);
font-weight: bold;
font-size: 15px;
height: 40px;
width: 90px;
border: 1px solid rgb(10,102,194);
border-radius: 20px;
cursor: pointer;
margin-top: 15px;
margin-left: 8px;
transition: all 0.15s ease;
}
.linkedin-s:hover{
border-width: 2px;
}
</style>
</head>
<body>
<button class="uber">
Request Now
</button>

<button class="amazon">
Add to cart
</button>

<button class="github">
sign up
</button>

<br>

<button class="bootstrap">
Get started
</button>
<button class="bootstrap-d">
Download
</button>

<br>

<button class="linkedin">
Apply on company website
</button>
<button class="linkedin-s">
save
</button>
</body>
</html>
Loading