-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (117 loc) · 3.63 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
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cesartalvez! Software Engineering, Languages and Everything in between!</title>
<style>
body {
margin: 0px;
padding: 0px;
}
.intro-thanks {
margin: 0px 10px 0px 10px;
border-radius: 10px;
background-color: rgb(213, 240, 241);
padding: 20px;
}
.thanks {
font-weight: bold;
}
.center-content {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.video {
font-size: 30px;
}
.video-container {
background-color: rgb(213, 240, 241);
margin: 30px 0px 30px 0px;
padding: 20px;
}
#nav {
background-color: black;
height: 20px;
margin-bottom: 20px;
padding: 10px;
}
#nav a {
color: white;
text-decoration: none;
}
#external {
margin: 20px 0px 30px 0px;
padding: 30px 0px 30px 0px;
border-radius: 5px;
background-color: beige;
}
#external > p {
padding-bottom: 20px;
font-weight: bolder;
}
#footer {
margin-bottom: 20px;
padding: 20px;
}
</style>
</head>
<body>
<section id="nav" class="center-content">
<a href="">cesartalvez | Sample LandingPage ✨</a>
</section>
<section id="intro" class="center-content">
<div>
<div class="intro-thanks">
<div class="">
Hi! This is a sample Landing Page.
</div>
<div class="thanks">
Thanks for vising! ☺️
</div>
<hr>
<br>I use this Page to <strong>Teach people I am Mentoring!</strong>
</div>
<div class="video-container">
<p><strong>Need help with Programming? See the links below! Click on the Link below! 👇</strong>
</p>
<ul>
<li>
<a class="video" href="https://youtu.be/cNgc_ra75oY" target="_blank">Landing Page Help! Git, Github Pages, Basic HTML, Flexbox :)</a>
</li>
<li>
<a class="video" href="https://youtu.be/uNEnYoceGyE" target="_blank">What is DRY? (Portuguese)</a>
</li>
</ul>
</div>
</div>
</section>
<section id="external">
<p class="center-content">Find me on Social Media! 🧑🏻💻</p>
<div class="center-content">
<div class="external">
<div class="linkedin-badge">
<div class="badge-base LI-profile-badge" data-locale="pt_BR" data-size="medium" data-theme="dark"
data-type="VERTICAL" data-vanity="cesartalves" data-version="v1">
<a class="badge-base__link LI-simple-link"
href="https://br.linkedin.com/in/cesartalves?trk=profile-badge"></a>
</div>
</div>
<div class="stackoveflow-badge">
<a href="https://stackoverflow.com/users/9744136/cesartalves">
<img src="https://stackoverflow.com/users/flair/9744136.png?theme=dark" width="208" height="58"
alt="profile for cesartalves at Stack Overflow, Q&A for professional and enthusiast programmers"
title="profile for cesartalves at Stack Overflow, Q&A for professional and enthusiast programmers">
</a>
</div>
</div>
</div>
</section>
<section id="footer">
Programmed with ❤️ by <a href="https://linktr.ee/cesartalvez" target="_blank">@cesartalvez!</a>
</section>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
</body>
</html>