-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
120 lines (108 loc) · 4.16 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
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
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/icon-font.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<title>
Christy's Page | Learning how to make web pages with CSS and SASS
</title>
</head>
<body>
<header class="header">
<div class="header__text">
<h1 class="heading-primary">
<span class="heading-primary--main">Programming</span>
<span class="heading-primary--sub"
>This is my first project created using SASS compiler</span
>
</h1>
<a href="#" class="btn btn--white btn--animated"
>Click here to learn more about my other projects</a
>
</div>
</header>
<main>
<section class="section-about">
<div class="u-center-text">
<h2 class="heading-secondary">What do I know about CSS and SASS?</h2>
</div>
<div class="row">
<div class="col-1-of-2">
<h3 class="heading-tertiary">
7-in-1 compiler to organize my code
</h3>
<p class="paragraph u-margin-bottom-small">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam,
ipsum sapiente aspernatur libero repellat quis consequatur ducimus
quam nisi exercitationem omnis earum qui.
</p>
<h3 class="heading-tertiary">
Utilize functions to calculate gap sizes, margin sizes, etc
</h3>
<p class="paragraph u-margin-bottom-small">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Asperiores nulla deserunt voluptatum nam.
</p>
<!-- <a href="#" class="btn-text">Learn more →</a> -->
</div>
<div class="col-1-of-2">
<h3 class="heading-tertiary">Transition and Animation</h3>
<p class="paragraph u-margin-bottom-small">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam,
ipsum sapiente aspernatur libero repellat quis consequatur ducimus
quam nisi exercitationem omnis earum qui.
</p>
<h3 class="heading-tertiary">Auto-refresh with SASS:compiler</h3>
<p class="paragraph u-margin-bottom-small">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Asperiores nulla deserunt voluptatum nam.
</p>
</div>
</div>
</section>
<section class="image-row-container">
<div class="col-1-of-2 u-center-text">
<h2 class="heading-secondary">Images for display</h2>
<div class="composition">
<img
alt="Photo 1"
class="composition__photo composition__photo--p1"
src="img/nat-1-large.jpg"
/>
<img
alt="Photo 2"
class="composition__photo composition__photo--p2"
src="img/nat-2-large.jpg"
/>
<img
alt="Photo 3"
class="composition__photo composition__photo--p3"
src="img/nat-3-large.jpg"
/>
</div>
<p class="paragraph section-two-paragraph u-margin-top">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores
nulla deserunt voluptatum nam. Lorem ipsum dolor sit amet
consectetur adipisicing elit. Asperiores nulla deserunt voluptatum
nam.
</p>
</div>
</section>
</main>
</body>
<footer class="footer__copyright">
<div class="bottom-container">
<a class="btn" href="mailto:[email protected]">EMAIL</a>
<a class="btn" href="www.linkedin.com/in/christykcmak">LinkedIn</a>
<p class="copyright">© Christy Mak. 2022.</p>
</div>
<p>Built by Christy Mak for learning CSS and SASS</p>
</footer>
</html>