-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 1.58 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>-2 NEW : NEW DOM PAGE</title>
<title>-2 NEW : CHANGED PAGE TITLE</title>
<meta charset="utf-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="styles/dom.css" />
</head>
<body>
<script src="js/2_dom.js"></script>
<!-- OUTER -->
<div id="parent">
<!-- TITLE -->
<h1>STUFF :)</h1>
<h2>Hello this is a new h2 :)</h2>
<!-- FLEX BOX TO HOLD the SHAPES -->
<div class="wrapper_flex_box">
<!-- A SHAPE -->
<div class="square_shape" id="one" style="background:orangered">
<p>my id is: <span>hello!</span></p>
</div>
<!-- A SHAPE -->
<div class="square_shape another_class" id="two">
<p>my id is: <span>two</span></p>
</div>
<!-- A SHAPE NO CLASS-->
<div id="three">
<p>my id is: <span>three</span></p>
</div>
<div id="four" class="square_shape">
<p>my id is: <span>four</span></p>
</div>
<div id="five" class="square_shape">
<p>my id is: <span>who?</span></p>
</div>
<<<<<<< HEAD <div id="six" class="square_shape" style="background:cornflowerblue;width:20vw">
=======
<div id="six" class="square_shape" style="background:rgb(225, 97, 24);width:20vw">
>>>>>>> ce7101da6629d753987540855218a5dc238e8eea
<p>my id is: <span>who?</span></p>
<p>another: <span>who?</span></p>
</div>
</div>
</div>
</body>
</html>