Skip to content

Commit 19cd1b4

Browse files
about section completed
1 parent 8a52ff9 commit 19cd1b4

File tree

4 files changed

+101
-19
lines changed

4 files changed

+101
-19
lines changed

design 3/images/about.jpg

60.2 KB
Loading

design 3/images/outline.png

202 Bytes
Loading

design 3/index.html

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<link rel="stylesheet" href="styles.css" />
8+
<script
9+
src="https://kit.fontawesome.com/0e53af926d.js"
10+
crossorigin="anonymous"
11+
></script>
12+
813
<title>design 3</title>
914
</head>
1015
<body>
11-
1216
<!-- header -->
13-
17+
1418
<header>
1519
<div class="header-container">
1620
<h1>VIBRACODE</h1>
@@ -36,5 +40,38 @@ <h2>Building Websites and Mobile Apps For Boosting Your Business</h2>
3640
<button>EXPLORE</button>
3741
</div>
3842
</section>
43+
44+
<!-- about -->
45+
46+
<section class="about">
47+
<h2 class="about-text">ABOUT US</h2>
48+
<div class="about-content">
49+
<div class="picture">
50+
<img src="images/about.jpg" alt="" />
51+
</div>
52+
<div class="about-right">
53+
<h2>SPECIALIZED IN WEB DESIGN AND DEVELOPMENT</h2>
54+
<hr />
55+
<p>
56+
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Debitis
57+
temporibus nisi accusamus deleniti deserunt repellat rerum provident
58+
tenetur illo blanditiis tempora cumque qui eligendi minus, inventore
59+
minima maxime eaque ea! Lorem ipsum dolor sit amet consectetur
60+
adipisicing elit. Suscipit itaque deleniti perspiciatis
61+
</p>
62+
<ul>
63+
<li>providing you solutions for all your software needs</li>
64+
<li>mobile apps development</li>
65+
<li>wordpress development made easy</li>
66+
</ul>
67+
<div class="socials">
68+
<a href=""> <i class="fa-brands fa-instagram"></i></a>
69+
<a href=""><i class="fa-brands fa-facebook"></i></a>
70+
<a href=""><i class="fa-brands fa-twitter"></i></a>
71+
<a href=""><i class="fa-brands fa-youtube"></i></a>
72+
</div>
73+
</div>
74+
</div>
75+
</section>
3976
</body>
4077
</html>

design 3/styles.css

Lines changed: 62 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -58,32 +58,77 @@
5858
border-bottom: 8px solid #d11414;
5959
}
6060
.showcase .showcase-content {
61-
background: rgba(256, 256, 256,0.3);
62-
backdrop-filter: blur(5px);
63-
color: rgb(0, 0, 0);
64-
border-radius: 3px;
61+
background: rgba(256, 256, 256, 0.3);
62+
backdrop-filter: blur(5px);
63+
color: rgb(0, 0, 0);
64+
border-radius: 3px;
6565
text-align: center;
6666
width: 50%;
6767
position: absolute;
6868
top: 30%;
6969
left: 25%;
7070
right: 25%;
71-
7271
}
7372
.showcase .showcase-content h2,
7473
p,
7574
button {
7675
margin: 20px;
7776
}
78-
.showcase .showcase-content button{
79-
background-color: transparent;
80-
border:1px solid black;
81-
padding: 10px 25px;
82-
cursor: pointer;
83-
}
84-
.showcase .showcase-content button:hover{
85-
background-color: #d11414;
86-
color: white;
87-
border: 1px solid #d11414;
88-
transition: 0.3s;
89-
}
77+
.showcase .showcase-content button {
78+
background-color: transparent;
79+
border: 1px solid black;
80+
padding: 10px 25px;
81+
cursor: pointer;
82+
}
83+
.showcase .showcase-content button:hover {
84+
background-color: #d11414;
85+
color: white;
86+
border: 1px solid #d11414;
87+
transition: 0.3s;
88+
}
89+
90+
/* about */
91+
92+
.about {
93+
height: 100vh;
94+
overflow: none;
95+
}
96+
.about .about-text {
97+
text-align: center;
98+
padding: 70px 0 50px 0;
99+
}
100+
.about .about-content {
101+
display: flex;
102+
width: 70%;
103+
margin: auto;
104+
}
105+
106+
.about .about-content .picture img {
107+
width: 400px;
108+
height: 500px;
109+
object-fit: cover;
110+
}
111+
.about .about-content .about-right {
112+
color: rgb(65, 65, 65);
113+
margin-left: 100px;
114+
}
115+
.about .about-content .about-right {
116+
color: rgb(65, 65, 65);
117+
margin-left: 100px;
118+
}
119+
.about .about-content .about-right li {
120+
list-style-position: inside;
121+
}
122+
.about .about-content .about-right li::marker {
123+
color: #d11414;
124+
}
125+
.about .about-content .about-right .socials i {
126+
padding: 30px 5px;
127+
color: black;
128+
}
129+
.about .about-content .about-right hr {
130+
height: 5px;
131+
background-color: #d11414;
132+
border: none;
133+
width: 30%;
134+
}

0 commit comments

Comments
 (0)