Web Scraping
Web Scraping
<!DOCTYPE html>
<html>
<head>
<title>Title on
Browser Tab</title>
</head>
<body>
<h1> Website
Header </h1>
<p> Some
Paragraph </p>
<body>
</html>
Complete Python Bootcamp
<!DOCTYPE html>
<html>
<head>
<title>Title on
Browser Tab</title>
</head>
<body>
<h1> Website
Header </h1>
<p> Some
Paragraph </p>
<body>
</html>
Complete Python Bootcamp
<!DOCTYPE html>
<html>
<head>
<title>Title on
Browser Tab</title>
</head>
<body>
<h1> Website
Header </h1>
<p> Some
Paragraph </p>
<body>
</html>
Complete Python Bootcamp
<!DOCTYPE html>
<html>
<head>
<title>Title on
Browser Tab</title>
</head>
<body>
<h1> Website
Header </h1>
[“Germany”, “France”, “Spain”]
<p> Some
Paragraph </p>
<body>
</html>
Complete Python Bootcamp
HTML CSS JS
Complete Python Bootcamp
#para2 {
color: red;
}
Complete Python Bootcamp
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Some Title</title>
</head>
<body>
<p class=‘cool’> Some Text </p>
<body>
</html>
Complete Python Bootcamp
.cool {
color: red;
font-family: verdana;
}
Complete Python Bootcamp
p{
color: red;
font-family: courier;
font-size: 160%;
}
.someclass{
color: green;
font-family: verdana;
font-size: 300%;
}
#someid{
color: blue;
}
Complete Python Bootcamp