forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (92 loc) · 3.54 KB
/
index.html
File metadata and controls
95 lines (92 loc) · 3.54 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<h1>Hi, It's me Saghar</h1>
<p class="about">
This site is about my Personal life and my Academic life
</p>
</header>
<main>
<section>
<article>
<h2>About me:</h2>
<p class="about-me">
I have permanently moved from Iran to the United Kingdom in late
2019.<br />
<br />
Prior to this, I graduated with a B.A in Fashion design from “The
Azad Tehran university” in Iran (2009), a “University Diploma in
Law” from London Metropolitan University (2012), and a Foundation
Course in Business from Bellerbys College in London (2009).<br />
<br />
Having lived in Iran for 20 years along with my college and
university education in the United Kingdom gives me the opportunity
to better understand the people from different social and cultural
backgrounds, which helped me alot during my study in Fashion
Design.<br />
<br />
<a href="https://en.wikipedia.org/wiki/Tehran"
>My beautiful city Tehran</a
>
</p>
</article>
<article>
<h3>Who is a Fashion designer and What they do:</h3>
<p class="fashion-designer">
Fashion Designers create clothing and accessories.<br />
<br />
They often are specialized in a certain area, such as sportswear or
children’s clothes.<br />
<br />
Typical Fashion Designer duties include: discussing requirements
with clients, using client briefs for instructions, updating their
knowledge of the latest trends, liaising with suppliers, organizing
fashion presentations, producing patterns and prints, estimating
costs, supervising production, and creating mood boards.<br />
Fashion Designers often use computer-aided design software during
their work.<br />
<br />
<a href="https://www.youtube.com/watch?v=nsjMw7VkCQk"
>Fashion Illustration - London College of Fashion Short Courses</a
>
</p>
</article>
<article>
<h4>What is Fashion show?</h4>
<p class="fashion-show">
A fashion show (French défilé de mode) is an event put on by a
fashion designer to showcase their upcoming line of clothing and/or
accessories during a fashion week. Fashion shows debut every season,
particularly the Spring/Summer and Fall/Winter seasons. This is
where the latest fashion trends are made. <br />
<br />
<a href="https://en.wikipedia.org/wiki/Fashion_show"
>Fashion Show</a
>
</p>
</article>
</section>
</main>
<footer class="c-site-footer">
This is a personal homepage created by Saghar<br />
as part of her course requirement by CYF program<br />
@2022<br />
</footer>
</body>
</html>