feat: added 03_dom
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Font Size</title>
|
||||
<script src="../../../lib/dom_helper.js" defer></script>
|
||||
<script src="font_size.js" defer></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<button id="very_big">Very Large</button>
|
||||
<button id="big">Large</button>
|
||||
<button id="normal">Normal</button>
|
||||
<button id="small">Small</button>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nam, error. Possimus in reiciendis quo numquam
|
||||
assumenda, deleniti doloremque, facere alias odio animi est aliquam delectus corrupti ducimus fugiat ea commodi.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
// Implement your code here
|
||||
@@ -0,0 +1,19 @@
|
||||
p {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.keyword {
|
||||
font-weight: bolder;
|
||||
color: #225;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
width: 250px;
|
||||
border: 2px solid #339;
|
||||
padding: 5px;
|
||||
background-color: #eef;
|
||||
opacity: 0.9;
|
||||
|
||||
font-size: 1em;
|
||||
text-align: justify;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Tooltips</title>
|
||||
|
||||
<script src="../../../lib/dom_helper.js" defer></script>
|
||||
<script src="tooltips.js" defer></script>
|
||||
|
||||
<link rel="stylesheet" href="tooltips.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Quantum Entanglement Mugs</h1>
|
||||
<h3>DRINK IN SYNC.</h3>
|
||||
|
||||
<p>
|
||||
In the realm of <span class="keyword">quantum mechanics</span>, particles
|
||||
can be <span class="keyword">entangled</span> in such a way that the state
|
||||
of one instantly influences the state of another, no matter the distance.
|
||||
This phenomenon fascinates physicists and challenges our understanding of
|
||||
reality. Imagine sipping your coffee from a mug that celebrates this
|
||||
<span class="keyword">quantum</span> wonder. Just like entangled
|
||||
particles, you and a friend can share a connection over any distance with
|
||||
these mugs. Introducing the Quantum
|
||||
<span class="keyword">Entanglement</span> Mugs.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Each set of Quantum <span class="keyword">Entanglement</span> Mugs
|
||||
includes two ceramic mugs designed to reflect the concept of entanglement.
|
||||
Share one with a friend, and no matter how far apart you are, you'll feel
|
||||
connected. Use them at your next physics meetup, and your colleagues will
|
||||
appreciate your thoughtful nod to quantum theory. Enjoy your coffee!
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
// Implement your code here
|
||||
Reference in New Issue
Block a user