Skip to content

Instantly share code, notes, and snippets.

@LearningJournal
Last active October 7, 2019 04:38
Show Gist options
  • Save LearningJournal/4dd742491f0501ad36e4c1042d4966da to your computer and use it in GitHub Desktop.
Save LearningJournal/4dd742491f0501ad36e4c1042d4966da to your computer and use it in GitHub Desktop.
<p>
Let me take you to <a href="https://www.google.com">Google</a>.
<p>
scp images.jpg satyam@40.114.67.142:/home/satyam/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Apache Spark Foundation Course by Learning Journal.">
<title>Learning Journal - Spark Dataframe Basics </title>
<!-- External CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
</head>
<body class="fixed-sn navy-blue-skin">
<header>
</header>
<main>
<div class="container mt-4 pt-4">
<div class="row mb-2">
<div class="col-12">
<div class="embed-responsive embed-responsive-16by9 mb-4">
<iframe src="https://www.youtube.com/embed/REg1ACa47Q8" title="Spark Dataframe Basics"
class="embed-responsive-item" gesture="media" allow="encrypted-media"
allowfullscreen></iframe>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<h1 class="h5-responsive text-center"> Dataframe Basics </h1>
</div>
</div>
<hr>
<div class="row">
<p>Some text goes here!</p>
</div>
</div>
</main>
<!--SCRIPTS-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
crossorigin="anonymous"></script>
</body>
</html>
sudo yum install httpd
sudo yum install httpd
sudo service httpd start
sudo cp myfirstpage.html /var/www/html/
sudo mv /var/www/html/myfirstpage.html /var/www/html/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Image without figure tag</title>
</head>
<body>
<p>
See below, I will be attaching an image of laptop.
</p>
<div>
<img src="Image/img.jpg" alt="Image of a laptop">
<p>
Here is a image of laptop.
</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Image with figure tag</title>
</head>
<body>
<p>
See below, I will be attaching an image of laptop.
</p>
<figure>
<img src="Image/img.jpg" alt="Image of a laptop">
<figcaption>Here is a image of laptop.</figcaption>
</figure>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Semantic Element</title>
</head>
<body>
<nav>
<a href="">Menu</a>
<a href="">Social</a>
<a href="">About</a>
<a href="">Contact Us</a>
</nav>
<article>
<h1>HTML5 Sectioning Elements</h1>
<p>
Some text goes in here.
</p>
<section>
<h2>Heading 1</h2>
<p>
Some text goes in here.
</p>
</section>
<section>
<h2>Heading 2</h2>
<p>
Some text goes in here.
</p>
</section>
<section>
<h2>Heading 3</h2>
<p>
Some text goes in here.
</p>
</section>
</article>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment