Deputies arrested a Fort Collins man after an investigation of a drive-by shooting in Larimer County last weekend, authorities said.
Deputies were called to the 2100 block of West County Road 54G in Laporte, about 5 miles northwest of Fort Collins, shortly after 4 a.m. on July 3 on a shooting call, according to the Larimer County Sheriff’s Office.
Deputies said they found shell casings in the driveway of the home and bullet holes in the home and on a vehicle parked at the residence.
Investigators said they learned a vehicle stopped in front of the home and two pedople opened fire in the direction of the home and a 20-year-old male who was outside at the time.
The number of occupants in teh house wasn’t released but deputies said no one was injured, deputies said.
The shooters fled the scene before officials arrived, deputies said.
Deputies obtained an arrest warrant for 21-year-old Rene Lozano on Thursday. He was arrested just before 7 p.m. during a traffic stop.
During a search of his home, investigators said they located two firearms that are believed to have been used in the shooting.
Lozano was booked into the Larimer County Jail on suspicion of attempted murder and firearms allegations.
Additionally, investigators say they arreted a 17-year-old boy from Fort Collins in the case, according to a news release.
Deputies asked that people with information on the case to call Fort Collins detective Jeremy Coleman at 970-498-5141 or the Northern Colorado Crime Stoppers at 970-221-6868.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}