-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<!-- [Delete this comment] This file is the main file for the challenge. For the most part, you should be editing this file. -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GreatFrontEnd Projects</title>
<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=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="css/style.css" />
<!-- Tailwind CDN allows you to use Tailwind classes immediately in your HTML without any installation steps.
If you're not using Tailwind, you may delete the <script> -->
<!-- Get started on Tailwind: https://tailwindcss.com/docs/installation/play-cdn -->
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<link rel="icon" href="img/favicon.ico" sizes="any" />
<style>
/* You may write styles inside this <style> tag or within `css/style.css`. */
</style>
</head>
<body>
<!-- Add your site or application content here -->
<div class="card">
<div class="profile">
<img class="profile-image" src="img/profile-thumbnail.png" alt="Sarah Dole" />
<div class="profile-name">
<p class="profile-name-text" >Sarah Dole</p>
<p class="profile-name-username">@sarahdole</p>
</div>
</div>
<div>
<p class="profile-description">
I've been searching for high-quality abstract images for my design
projects, and I'm thrilled to have found this platform. The variety
and depth of creativity are astounding!
</p>
</div>
</div>
<!-- Sarah Dole
@sarahdole
I've been searching for high-quality abstract images for my design projects,
and I'm thrilled to have found this platform. The variety and depth of creativity are astounding!
-->
<!-- Attribute this challenge to yourself! -->
<script src="js/index.js"></script>
</body>
</html>