-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
119 lines (103 loc) · 4.6 KB
/
about.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elaine Grenouille - freelancer</title>
<meta description content="I'm professional photographer and graphic artist with 12 years of experience.">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline+Text:wght@900&display=swap"
rel="stylesheet">
<link type="text/css" rel="stylesheet" href="./css/app.css">
<script src="https://kit.fontawesome.com/c2672b97d2.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="wrapper">
<header class="header">
<nav class="nav">
<div class="menu-btn">
<span class="menu-line"></span>
<span class="menu-line"></span>
<span class="menu-line"></span>
</div>
<ul class="pages-list">
<li data-section="home" class="item-list"><a href="index.html">home</a></li>
<li data-section="about" class="item-list"><a href="#">about</a></li>
<li data-section="blog" class="item-list"><a href="blog.html">blog</a></li>
<li data-section="portfolio" class="item-list"><a href="portfolio.html">portfolio</a></li>
<li data-section="contact" class="item-list"><a href="contact.html">contact</a></li>
</ul>
</nav>
</header>
<main data-section="about" class="about-page">
<article class="header-section">
<h1>About<span> Me</span></h1>
<h2>A little about<span> me.</span></h2>
</article>
<section class="introduce-box">
<article class="about-notes">
<h2>I'm creative <span>photographer</span> based in Paris, France</h2>
<p>With 12 years of experience as a professional photographer and graphic artist, I have acquired the
skills
and
knowledge
necessary to make your project success.
</p>
<button class="about-cv">Download CV</button>
</article>
<div title="black and white photo of woman who is posing by the wall" class="about-img"
rel="https://www.pexels.com/pl-pl/zdjecie/cialo-ciemny-czarno-bialy-dama-219575/">
</div>
</section>
<article class="header-section">
<h1><span>My</span> Services</h1>
</article>
<section class="about-services">
<article class="about-service">
<i class="fas fa-pencil-ruler"></i>
<h3>Photo processing</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nisi autem laudantium magnam
</p>
</article>
<article class="about-service">
<i class="fab fa-instagram"></i>
<h3>Photo sessions</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nisi autem laudantium magnam
</p>
</article>
<article class="about-service">
<i class="far fa-lightbulb"></i>
<h3>Creative Design</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nisi autem laudantium magnam
</p>
</article>
</section>
<article class="header-section">
<h1>My<span> skills</span></h1>
</article>
<section class="about-skills">
<article class="about-skill">
<figure><img src="img/photoshop.png" alt=""></figure>
<figcaption>Photoshop</figcaption>
</article>
<article class="about-skill">
<figure><img src="img/illustrator.png" alt=""></figure>
<figcaption>Illustrator</figcaption>
</article>
<article class="about-skill">
<figure><img src="img/inDesign.png" alt=""></figure>
<figcaption>InDesign</figcaption>
</article>
<article class="about-skill">
<figure><img src="img/premiere-pro.png" alt=""></figure>
<figcaption>Premiere-Pro</figcaption>
</article>
</section>
</main>
<footer>© Elaine Grenouille</footer>
</div>
<script src="javascript/script.js"></script>
</body>
</html>