-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (92 loc) · 3.82 KB
/
index.html
File metadata and controls
95 lines (92 loc) · 3.82 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hi, I'm Julia K</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="navbar">
<a class="navbar-brand" href="#">Hi, I'm Julia</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#welcome-section">Welcome</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<section id="welcome-section">
<p>
Hi,<br>
I'm Julia,<br>
Web Developer.
</p>
</section>
<div class="row">
<div class="col-lg-4 col-sm-6" id="projects">
<a href="projectsForFCC/tributePage/tributePage.html" class="project-tile">
<img class="img-thumbnail" src="projectsForFCC/tributePage/pic1.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="projectsForFCC/photoGrid/photoGrid.html" class="project-tile">
<img class="img-thumbnail" src="projectsForFCC/photoGrid/pic2.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="projectsForFCC/articles/index.html" class="project-tile">
<img class="img-thumbnail" src="projectsForFCC/articles/pic3.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="projectsForFCC/theImageGallery/gallery.html" class="project-tile">
<img class="img-thumbnail" src="projectsForFCC/theImageGallery/theImageGallery.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="projectsForFCC/fullscreenLandingPage/index.html" class="project-tile">
<img class="img-thumbnail" src="projectsForFCC/fullscreenLandingPage/pic6.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="index.html" class="project-tile">
<img class="img-thumbnail" src="pic7.png" alt="My first project.png">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="index.html" class="project-tile">
<img class="img-thumbnail" src="pic7.png" alt="Place for new project">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="index.html" class="project-tile">
<img class="img-thumbnail" src="pic7.png" alt="Place for new project">
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="index.html" class="project-tile">
<img class="img-thumbnail" src="pic7.png" alt="Place for new project">
</a>
</div>
</div>
</div>
<div class="container" id="contact">
<a href="https://github.com/juliaCold" target="_blank" class="fab fa-github-square fa-3x" role="button" id="profile-link"></a>
<a href="https://www.linkedin.com/in/julia-koldorkina/" target="_blank" class="fab fa-linkedin fa-3x" role="button" id="profile-link"></a>
</div>
</body>
</html>