-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (50 loc) · 2.46 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<section id="intro">
<h1>Origami</h1>
<p>Welcome to the world of Arts and Crafts. This page is all about enhancing your creative skills using various
origami technics.</p>
<h2>Lets get started</h2>
<div class="line"></div>
<!-- Set this link in src "https://en.wikipedia.org/wiki/Origami" that descibes Origami art/ technique-->
<iframe width="700" height="620" style="border: 0px;"
src="https://en.wikipedia.org/wiki/Origami">
</iframe>
</section>
<section id="origami1">
<div class="line"></div>
<h1>Crane</h1>
<!-- add the link below https://www.thesprucecrafts.com/traditional-origami-crane-2540790 for making the crane in a href tag
for example, href=" https://www.thesprucecrafts.com/traditional-origami-crane-2540790" -->
<a href="https://www.thesprucecrafts.com/traditional-origami-crane-2540790" target="_blank">
<img src="crane.jpg" width="368" height="276">
</a>
<h1>Tulip Flower</h1>
<!-- add the link below https://www.thesprucecrafts.com/christmas-origami-projects-4147453 for making the tulip_flower in a href tag-->
<a href="https://www.thesprucecrafts.com/christmas-origami-projects-4147453" target="_blank">
<img src="tulip_flower.jpg" width="368" height="276">
</a>
</section>
<section id="origami2">
<div class="line"></div>
<h1>Envelop</h1>
<!--add the link below https://www.thesprucecrafts.com/make-an-easy-origami-envelope-4094705 for making the Envelop in a href tag-->
<a href="https://www.thesprucecrafts.com/make-an-easy-origami-envelope-4094705" target="_blank">
<img src="envelop.jpg" width="368" height="276">
</a>
<h1>modular_box</h1>
<!--add the link below https://www.thesprucecrafts.com/modular-origami-cube-box-4082281 for making the modular box in a href tag-->
<a href="https://www.thesprucecrafts.com/modular-origami-cube-box-4082281" target="_blank">
<img src="modular_box.jpg" width="368" height="276">
</a>
</section>
</body>
</html>