mirror of
https://gitlab.com/greenleebt/business-website.git
synced 2026-08-17 16:26:16 +00:00
following steps on https://about.gitlab.com/blog/2025/03/03/build-a-new-website-in-a-few-easy-steps-with-gitlab-pages/
This commit is contained in:
parent
87414ba0cc
commit
9968937bc5
2 changed files with 188 additions and 0 deletions
51
index.html
Normal file
51
index.html
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>[Your Name] · [Your Title]</title>
|
||||
<meta name="description" content="[Your Name] is a [Your Title]."/>
|
||||
<meta name="author" content="[Your Name]"/>
|
||||
<meta property="og:title" content="[Your Name]" />
|
||||
<meta property="og:description" content="[Your Title]" />
|
||||
<meta property="og:image" content="og.png" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<link href="https://unpkg.com/basscss@8.0.2/css/basscss.min.css" rel="stylesheet">
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content" id="content">
|
||||
<div class="p2 sm-p4 mt2 sm-mt4 mb2 sm-mb4">
|
||||
<div class="fade mt3">
|
||||
<a target="_new" href="[Your Linkedin URL]">
|
||||
<img class="photo" src="profile.png" width="64" height="64">
|
||||
</a>
|
||||
</div>
|
||||
<h2 class="mb0 mt4 fade">
|
||||
Hello, I'm [Your Name]
|
||||
<span class="smallcaps">(</span>
|
||||
<a target="_new" href="[Your Linkedin URL]">@[Your Handle]</a>
|
||||
<span class="smallcaps">)</span>
|
||||
</h2>
|
||||
<h2 class="mt0 mb4 fade gray">
|
||||
I'm a [Your Title]
|
||||
</h2>
|
||||
<p class="mb4 fade">
|
||||
I'm a [Your Role] at [Your Company], [Brief company description].
|
||||
</p>
|
||||
<div class="fade">
|
||||
<p class="fade mb4">
|
||||
Your personal statement about what you do and what you're interested in. Add your contact preferences here.
|
||||
</p>
|
||||
</div>
|
||||
<p class="fade mb4">
|
||||
<span class="gray">—</span>
|
||||
[Your Name]
|
||||
<span class="smallcaps>(</span>
|
||||
<a target="_new" href="[Your Linkedin URL]">@[Your Handle]</a>
|
||||
<span class="smallcaps">)</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue