forked from itscodenation/int-u2l3-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (94 loc) · 2.68 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
<!DOCTYPE html>
<html>
<head>
<title>Do Now</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lobster+Two:ital@1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<style>
/* 1. Change the number after width to a different number (keep the px!). What happened to the image of Drake? */
img {
width: 250px;
}
/* 2. Change the color from black to green (or a different color of your choice). What happened to the text that says "Instagram" and "Drake"? */
h1 {
color:black;
}
.profile {
display:flex;
justify-content: space-around;
}
.pfp {
border-radius: 300px;
}
.blue-border {
background-color: #1780e8;
width: 160px;
height: 30px;
border-radius: 15px;
}
body {
font-family: 'Poppins', sans-serif;
font-weight: bold;
}
.fullname {
font-family: 'Roboto', sans-serif;
}
.story {
width: 400px;
}
.story1 {
border-radius: 301px;
height: 100px;
}
.bio {
font-size: 20px;
}
h3 {
color:black;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.main {
text-align: center;
font-family: 'Lobster Two', cursive;
font-size: 65px;
}
.user {
font-size: 45px;
font-family: 'Roboto', sans-serif;
}
.f-or-unf{
display:flex;
justify-content:space-around;
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<h1 class="main">Instagram</h1>
<hr>
<h1>Drake</h1>
<h2>@champagnepapi</h2>
<div class="message-button">
<h3 class="blue-border"> Message</h3>
</div>
<div class="profile-info">
<img src="https://thumbor.forbes.com/thumbor/fit-in/416x416/filters%3Aformat%28jpg%29/https%3A%2F%2Fspecials-images.forbesimg.com%2Fimageserve%2F5ed578988b3c370006234c35%2F0x0.jpg%3Fbackground%3D000000%26cropX1%3D43%26cropX2%3D1074%26cropY1%3D49%26cropY2%3D1080" class="pfp">
<div class="profile">
<p>5,119 Posts</p>
<p>94.3 Followers</p>
<p>2,616 following</p>
</div>
</div>
<div class="f-or-unf">
<h3 class="blue-border">Follow</h3>
<h3 class="blue-border">Unfollow</h3>
</div>
</body>
</html>