-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
133 lines (131 loc) · 5.36 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
121
122
123
124
125
126
127
128
129
130
131
<!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">
<title>Maryam's Frontend Practice</title>
<link rel="stylesheet" href="./homepage/css/styles.css" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<nav>
<div class="nav-wrapper">
<h1>Maryam's Frontend Practice</h1>
</div>
</nav>
<section class="about">
<div class="about-wrapper">
<p>This project was completed using HTML,CSS,Less and JavaScript as part of the <a href="https://www.frontendpractice.com/" target="_blank">Frontend Practice</a> challenge created by Kyle Shook. It involves building a replica of different websites to improve and gain frontend skills.</p>
<p>Made By: Maryam Aljawayed</p>
</div>
</section>
<div class="all-projects-container">
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Ableton</h1>
<a href="/1.Ableton/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/1.Ableton.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Starbucks</h1>
<a href="/2.Starbucks/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/2.Starbucks.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Monogram</h1>
<a href="/3.console/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/3.console.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Monstercat</h1>
<a href="/4.monstercat/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/4.monstercat.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Qrates</h1>
<a href="/6.Qrates/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/6.Qrates.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Backstage Talks</h1>
<a href="/7.BackstageTalks/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/7.BackstageTalks.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Déplacé Maison</h1>
<a href="/8.DeplaceMaison/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/8.DeplaceMaison.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Red Square</h1>
<a href="/9.RedSquare/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/9.RedSquare.png" alt="">
</div>
</div>
</div>
<div class="project-container">
<div class="project-wrapper">
<div class="project-content">
<h1>Nintendo</h1>
<a href="/10.Nintendo/index.html" target="_blank">View Website</a>
</div>
<div class="project-img-box">
<img src="./homepage/images/10.Nintendo.png" alt="">
</div>
</div>
</div>
</div>
<footer>
<div class="footer-wrapper">
<p>©2021 By Maryam Aljawayed</p>
</div>
</footer>
</body>
</html>