-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobbies.html
95 lines (90 loc) · 4.33 KB
/
hobbies.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/hobbies.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100;300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="./assets/img/fav.png" type="image/gif">
<title>Nora Leonte</title>
</head>
<body>
<div class="blur">
<nav>
<div class="nav-right">
<img src="./assets/img/nora logo.png" alt="logo" class="logo">
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
</ul>
</div>
<div class="nav-left"><button>Contact Me</button></div>
</nav>
<main>
<div class="section hobbies">
<h2 class="subtitle">What I do in my free time</h2>
<div class="drawing hobby">
<div class="hobbies-text">
<h3>Drawing</h3>
<p>Drawing is one of my favorite activities. It is the perfect way for me to relax and sort
trough my thoughts. It doesn't need to be done on a paper with a pencil, painting also
works, and digital illustration is one of my new best friends.</p>
</div>
<img src="./assets/img/hobbies/drawing.png" alt="drawing tools" id="drawing" class="hobby-img">
</div>
<div class="outdoor hobby">
<img src="./assets/img/hobbies/outdoor.png" alt="outdoor activity" id="outdoor" class="hobby-img">
<div class="hobbies-text">
<h3>Outdoor Activities</h3>
<p>I like to spend as much time outside as possible, so I like to go on long walks, or for
midnight runs around the lake. One of my favorite outdoor activities is kayaking. It is a
nice way to connect with nature.</p>
</div>
</div>
</div>
<div class="section">
<h2 class="subtitle">My Hobbies and Passions</h2>
<div class="cards">
<div class="cards-left">
<div class="card">
<img src="./assets/img/hobbies/games.png" alt="" class="card-img">
<div class="card-text">
<h4>Games</h4>
<p>Ocasionally I like to play some video games.</p>
</div>
</div>
<div class="card">
<img src="./assets/img/hobbies/sport.png" alt="" class="card-img">
<div class="card-text">
<h4>Sports</h4>
<p>I like having a routine and excercising regularly.</p>
</div>
</div>
</div>
<div class="cards-right">
<div class="card">
<img src="./assets/img/hobbies/tv.png" alt="" class="card-img">
<div class="card-text">
<h4>TV Shows</h4>
<p>I watch a lot of TV Shows and movies.</p>
</div>
</div>
<div class="card">
<img src="./assets/img/hobbies/cook.png" alt="" class="card-img">
<div class="card-text">
<h4>Cooking</h4>
<p>I am a pretty good cook and I like trying out ne recipes.</p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</body>
</html>