Skip to content

Commit 8881b46

Browse files
author
MdBayazid-star
committed
Full Web Page
1 parent a4b1f95 commit 8881b46

File tree

3 files changed

+224
-5
lines changed

3 files changed

+224
-5
lines changed

img/text.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
Comandos Git
2+
============
3+
4+
## Versões traduzidas
5+
- [English version (original)](README.md)
6+
7+
___
8+
9+
_Uma lista dos comandos Git mais usados_
10+
11+
*Se você está interessado em meus aliases do Git, dê uma olhada no meu `.bash_profile`, encontrado aqui: https://github.com/joshnh/bash_profile/blob/master/.bash_profile*
12+
13+
--
14+
15+
### Obtendo & Criação de Projetos
16+
17+
| Comando | Descrição |
18+
| ------- | --------- |
19+
| `git init` | Inicializa um repositório Git local |
20+
| `git clone ssh://git@github.com/[usuario]/[nome-repositorio].git` | Cria uma cópia local de um repositório remoto |
21+
22+
### Básicos
23+
24+
| Comando | Descrição |
25+
| ------- | --------- |
26+
| `git status` | Checa o status |
27+
| `git add [nome-arquivo.txt]` | Adiciona um arquivo para área de stage |
28+
| `git add -A` | Adiciona todos os arquivos novos ou modificados para a área de stage |
29+
| `git commit -m "[Mensagem de Commit]"` | Comita as alterações |
30+
| `git rm -r [nome-arquivo.txt]` | Remove um arquivo (ou pasta) |
31+
32+
### Branching & Merging
33+
34+
| Comando | Descrição |
35+
| ------- | --------- |
36+
| `git branch` | Lista as branches (o asterisco denota a branch atual) |
37+
| `git branch -a` | Lista todas as branches (local e remoto) |
38+
| `git branch [nome da branch]` | Cria uma nova branch |
39+
| `git branch -d [nome da branch]` | Deleta uma branch |
40+
| `git push origin --delete [nome da branch]` | Deleta uma branch remota |
41+
| `git checkout -b [nome da branch]` | Cria uma nova branch e muda para ela |
42+
| `git checkout -b [nome da branch] origin/[nome da branch]` | Clona uma branch remota e muda para ela |
43+
| `git checkout [nome da branch]` | Seleciona uma branch |
44+
| `git checkout -` | Muda para a última branch |
45+
| `git checkout -- [nome-arquivo.txt]` | Descarta modificações de um arquivo |
46+
| `git merge [nome da branch]` | Faz um merge de uma branch na branch atual |
47+
| `git merge [source branch] [branch alvo]` | Faz um merge de uma branch em outra branch |
48+
| `git stash` | Tirar o estado sujo do seu diretório de trabalho |
49+
| `git stash clear` | Remove todas as entradas 'stash' |
50+
51+
### Sharing & Updating Projects
52+
53+
| Comando | Descrição |
54+
| ------- | --------- |
55+
| `git push origin [nome da branch]` | Enviar uma branch para seu repositório remoto |
56+
| `git push -u origin [nome da branch]` | Envia as alterações da branch informada para um repositório remoto (and selecionar a branch) |
57+
| `git push` | Envia as alterações para o repositório remoto (branch atual) |
58+
| `git push origin --delete [nome da branch]` | Deletar uma branch remota |
59+
| `git pull` | Atualiza o repositório local para o último commit |
60+
| `git pull origin [nome da branch]` | Recebe alterações do repositório remoto |
61+
| `git remote add origin ssh://git@github.com/[usuario]/[nome-repositorio].git` | Adicionar um repositório remoto |
62+
| `git remote set-url origin ssh://git@github.com/[usuario]/[nome-repositorio].git` | Seta um repositório da origin branch para o SSH |
63+
64+
### Inspeção & Comparação
65+
66+
| Comando | Descrição |
67+
| ------- | --------- |
68+
| `git log` | Ver modificações |
69+
| `git log --summary` | Ver modificações (detalhadas) |
70+
| `git diff [branch original] [branch alvo]` | Visualizar alterações antes de mesclar |
71+

index.html

+33-4
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,56 @@ <h4>Web Desing and Development..</h4>
4747
<p>
4848
Lorem ipsum dolor sit amet consectetur adipisicing elit. At tenetur dolores quasi architecto ea adipisci officia! Ullam magnam vel non, neque ducimus et adipisci pariatur quo harum aspernatur iure ratione beatae, molestias atque dolore velit praesentium eius quae officia omnis recusandae. Sequi odio dicta doloribus non nobis laudantium, deleniti sed.
4949
</p>
50-
<a href="#" class="buttons">Hire ME</a>
50+
<a href="https://www.linkedin.com/in/md-bayazid-5bb117216/" target="_blank" class="buttons">Hire ME</a>
5151
</div>
5252
<div class="home__section-img">
5353
<a href="#">
5454
<img src="img/bg-1.png" alt="">
5555
</a>
5656
</div>
5757
</section>
58-
<!--==================== HOME SECTION START =============================-->
58+
<!--==================== HOME SECTION START =============================-->`
5959
<!--==================== DREAM SECTION START =============================-->
6060

6161
<section class="Dream__section" id="dreamSection">
62-
62+
<div class="Dream__section-img">
63+
<a href="#"><img src="img/bg-2.png" alt=""></a>
64+
</div>
65+
<div class="Dream__section-content">
66+
<h2>Dream Big</h2>
67+
<h4>Become a web developer</h4>
68+
<p>
69+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt magnam maxime temporibus, cupiditate ut inventore sapiente maiores in quos nam ullam, molestiae ex qui quae fugit fuga, consequuntur iusto ipsam suscipit expedita quaerat velit cum deleniti. Quidem, sequi quaerat fugit esse nobis eius id. Fuga eum excepturi iure eius cupiditate.
70+
</p>
71+
<a href="img/text.md" download class="buttons">Download Reasume</a>
72+
</div>
6373
</section>
6474
<!--==================== DREAM SECTION START =============================-->
6575
<!--==================== EXPERENCE SECTION START =============================-->
6676

6777
<section class="Experence__section" id="experenceSection">
68-
78+
<div class="Experence__section-header">
79+
<h1>Experence</h1>
80+
</div>
81+
<div class="main__Experence__section" id="mainExperenceSection">
82+
<div class="main__Experence__section-tab1">
83+
<h1>Full Stack Web Developer</h1>
84+
<h4>2021-Present | Pro Level Developer</h4>
85+
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sit, suscipit totam? Doloremque modi, assumenda ut soluta libero quos pariatur perferendis maiores, reprehenderit error qui, excepturi aliquid adipisci officiis reiciendis! Soluta praesentium velit laborum cumque vitae quidem alias deleniti perspiciatis iste delectus, suscipit labore nobis eos, eius dolores. Mollitia, nulla recusandae. Dolorum eligendi unde cupiditate nihil. Ipsum laboriosam totam accusamus minus. Aliquid qui ratione totam eaque deserunt corporis, assumenda odio quasi!</p>
86+
</div>
87+
<div class="main__Experence__section-tab2">
88+
<h1>Baby Web Developer</h1>
89+
<h4>2020-2021 | Programming Hero Learner</h4>
90+
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sit, suscipit totam? Doloremque modi, assumenda ut soluta libero quos pariatur perferendis maiores, reprehenderit error qui, excepturi aliquid adipisci officiis reiciendis! Soluta praesentium velit laborum cumque vitae quidem alias deleniti perspiciatis iste delectus, suscipit labore nobis eos, eius dolores. Mollitia, nulla recusandae. Dolorum eligendi unde cupiditate nihil. Ipsum laboriosam totam accusamus minus. Aliquid qui ratione totam eaque deserunt corporis, assumenda odio quasi!</p>
91+
</div>
92+
</div>
6993
</section>
7094
<!--==================== EXPERENCE SECTION START =============================-->
95+
<!--==================== FOOTER START =============================-->
96+
<div class="fotter">
97+
<p>&copy; I right is reserver by Md Bayazid</p>
98+
</div>
99+
<!--==================== FOOTER END =============================-->
71100

72101
</body>
73102
</html>

style.css

+120-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
section
9696
{
9797
width: 100%;
98-
height: 100vh;
9998
}
10099
.home__section
101100
{
@@ -136,7 +135,127 @@ section
136135
color: #FFF;
137136
border-radius: 1rem;
138137
}
138+
.home__section-content a:hover
139+
{
140+
background: linear-gradient(45deg,tomato, lightsalmon);
141+
}
139142
.home__section-img a img
140143
{
141144
width: 100%;
145+
}
146+
/* dream Section */
147+
.Dream__section
148+
{
149+
display: flex;
150+
justify-content: space-evenly;
151+
align-items: center;
152+
background: url(img/dream-bg.png);
153+
background-repeat: no-repeat;
154+
background-position: right;
155+
}
156+
.Dream__section-img a img
157+
{
158+
width: 100%;
159+
}
160+
.Dream__section-content
161+
{
162+
width: 40%;
163+
}
164+
.Dream__section-content h2
165+
{
166+
font-size: 40px;
167+
font-weight: 900;
168+
line-height: 80px;
169+
margin-bottom: 40px;
170+
}
171+
.Dream__section-content h4
172+
{
173+
margin-bottom: 15px;
174+
font-size: 20px;
175+
}
176+
.Dream__section-content p
177+
{
178+
color: #9EA09E;
179+
margin-bottom: 40px;
180+
}
181+
.Dream__section-content a
182+
{
183+
text-decoration: none;
184+
padding: 1.2em 2.8em;
185+
background: linear-gradient(45deg, lightsalmon, tomato);
186+
color: #FFF;
187+
border-radius: 1rem;
188+
}
189+
190+
.Dream__section-content a:hover
191+
{
192+
background: linear-gradient(45deg, tomato , lightsalmon);
193+
}
194+
/* Experence */
195+
.main__Experence__section
196+
{
197+
display: flex;
198+
justify-content: space-evenly;
199+
align-items: center;
200+
}
201+
.Experence__section-header h1
202+
{
203+
margin: 100px 50px;
204+
font-size: 40px;
205+
}
206+
.main__Experence__section-tab1,
207+
.main__Experence__section-tab2
208+
{
209+
width: 45%;
210+
margin-bottom: 100px;
211+
padding: 100px 80px;
212+
box-shadow: 5px 7px 40px rgba(0, 0, 0, 0.5);
213+
}
214+
.main__Experence__section-tab1 h2,
215+
.main__Experence__section-tab2 h2
216+
{
217+
font-size: 50px;
218+
}
219+
.main__Experence__section-tab1 h4,
220+
.main__Experence__section-tab2 h4
221+
{
222+
color: #FB6957;
223+
margin: 20px 0;
224+
}
225+
.main__Experence__section-tab1{
226+
border-left: 7px solid;
227+
border-image: linear-gradient(180deg, lightsalmon, tomato);
228+
border-image-slice: 1;
229+
/* transition: 0.1s; */
230+
}
231+
.main__Experence__section-tab1:hover
232+
{
233+
border-left: 7px solid;
234+
border-image: linear-gradient(180deg, tomato, lightsalmon);
235+
border-image-slice: 1;
236+
}
237+
.main__Experence__section-tab2{
238+
border-left: 7px solid;
239+
border-image: linear-gradient(180deg, blue, cyan);
240+
border-image-slice: 1;
241+
/* transition: 0.1s; */
242+
}
243+
.main__Experence__section-tab2:hover
244+
{
245+
border-left: 7px solid;
246+
border-image: linear-gradient(180deg, cyan, blue);
247+
border-image-slice: 1;
248+
}
249+
/* footer */
250+
.fotter
251+
{
252+
width: 100%;
253+
border-top: 1px solid rgba(0, 0, 0, 0.1);
254+
}
255+
.fotter p
256+
{
257+
text-align: center;
258+
font-size: 15px;
259+
color: #9EA09E;
260+
margin: 20px 0;
142261
}

0 commit comments

Comments
 (0)