-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (41 loc) · 2.01 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>About | Twidt </title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Twidt</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>About Me</h1>
<img src="assets/images/profile .png" class="auth-image" alt="Your Name">
<p>Marshmallow jelly soufflé pastry biscuit gummi bears tootsie roll tootsie roll gingerbread. Cotton candy muffin gingerbread fruitcake. Sweet roll soufflé topping wafer croissant oat cake gummi bears.</p>
<p>Jelly-o cheesecake dessert fruitcake ice cream brownie liquorice soufflé. Caramels biscuit gummi bears tiramisu chupa chups. Croissant macaroon cotton candy cake pudding.</p>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="https://github.com/twidt"><img src="assets/images/github-128.png" class="social" alt="GitHub" /></a>
<a href="https://www.linkedin.com/in/tc-twidt-662034152"><img src="assets/images/linkedin-128.png" class="social" alt="LinkedIn" /></a>
<a href="https://stackoverflow.com/users/8866004/twidt?tab=profile"><img src="assets/images/stackoverflow-128.png" class="social" alt="Stack Overflow" /></a>
</div>
</section>
</div>
<footer>
<div class="container"> Copyright © 2017 Twidt </div>
</footer>
</body>
</html>