-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (90 loc) · 3.95 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
<!doctype html>
<html>
<head>
<!-- Page setup -->
<meta charset="utf-8">
<title>MarkD Bellows</title>
<meta name="description" content="Find out about MarkD Bellows">
<meta name="author" content="Written with the help of Samuel and Elise Bellows">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link rel="icon" type="image/png" href="favicon.png">
<!-- Stylesheets -->
<!-- Reset default styles and add support for google fonts -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" />
<!-- Custom styles -->
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Want to add Bootstrap? -->
<!-- Visit: https://getbootstrap.com/docs/4.3/getting-started/introduction/ -->
</head>
<body>
<header id="header">
<img src="MarkTreeFace.jpg">
<h1>MarkD Bellows</h1>
<!-- Menu link fragment #id should match a div id. Example: <a href="#home"> links to <div id="home"></div> -->
<ul class="main-menu">
<li><a href="#home">home</a></li>
<li><a href="#networking">Networking Document</a></li>
<li><a href="#Resume">Resume</a></li>
<li><a href="#about">about</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</header>
<div id="container">
<div class="inner">
<div id="content">
<div id="home" class="content-region hide">
<h2>Home</h2>
<p>
Welcome to MarkD Bellows' site!
</p>
</div>
<div id="about" class="content-region hide">
<h2>About</h2>
<p>
Under construction Add some detail about me.
</p>
</div>
<div id="contact" class="content-region hide">
<h2>Contact</h2>
<p>
Under construction - linked in message Please message me with linked in messenger.
</p>
</div>
<div id="Resume" class="content-region hide">
<h2>Resume</h2>
<p>
Under Construction: this will bring up my generic resume
</p>
</div>
<div id="Networking" class="content-region hide">
<h2>Networking</h2>
<p>
Under Construciton: This is where I plan to put my networking document.
</p>
</div>
</div>
</div>
</div>
<footer>
<!-- help here: https://www.sitepoint.com/github-profile-readme/ -->
<div id="badges" align="center">
<a href="https://www.linkedin.com/in/markdbellows/" target="_blank">
<img src="https://img.shields.io/badge/LinkedIn-blue?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"/>
</a>
 
<a href="https://github.com/markdbellows" target="_blank">
<img src="https://img.shields.io/badge/Github-white?style=for-the-badge&logo=github&logoColor=black" alt="Github Badge"/>
</a>
 
<a href="mailto:markdbellows@gmail.com" target="_blank">
<img src="https://img.shields.io/badge/gmail-white?logo=gmail&logoColor=red&style=for-the-badge" alt="Github Badge"/>
</a>
</div>
</footer>
<!-- Load additional JS scripts here -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>