forked from florinpop17/10websites-design-to-html-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (77 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>10 Projects in 10 Hours</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h3>YouTube Video:</h3>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/Rz-rey4Q1bw"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<h3>Projects:</h3>
<ul>
<li>
<a target="_blank" href="automotive-car-design/index.html"
>Automotive Car</a
>
</li>
<li>
<a target="_blank" href="fashion-design/index.html">Fashion</a>
</li>
<li>
<a target="_blank" href="footwear-design/index.html"
>Footwear Shoes</a
>
</li>
<li>
<a target="_blank" href="legal-design/index.html">Legal</a>
</li>
<li>
<a target="_blank" href="newspaper-design/index.html"
>Newspaper</a
>
</li>
<li>
<a target="_blank" href="portfolio-design/index.html"
>Portfolio</a
>
</li>
<li>
<a target="_blank" href="restaurant-design/index.html"
>Restaurant</a
>
</li>
<li>
<a target="_blank" href="streaming-design/index.html"
>Streaming</a
>
</li>
<li>
<a target="_blank" href="technology-design/index.html"
>Technology IT</a
>
</li>
<li>
<a target="_blank" href="tourism-design/index.html">Tourism</a>
</li>
</ul>
<footer>
Built with 💜 by
<a target="_blank" href="https://florin-pop.com">Florin Pop</a>.
Code on
<a
target="_blank"
href="https://github.com/florinpop17/10websites-design-to-html-css"
>Github</a
>
</footer>
</body>
</html>